manozd
manozd
> What is the output of `print(type(model))`? > > Relevant code section can be found [here](https://github.com/apple/coremltools/blob/973eae67f2f273a29e80a9b009987516a070a58b/coremltools/converters/mil/frontend/tensorflow2/load.py#L99). It is the same as in error text above: ``
[saved_model.zip](https://github.com/apple/coremltools/files/9004535/saved_model.zip) This is a model that i got after converting from checkpoints to saved_model using [this](https://github.com/tensorflow/models/blob/master/research/object_detection/exporter_main_v2.py). I also tried to convert it to tflite and its alright, so it is...
> [Loading an untrusted TensorFlow model is not secure](https://github.com/tensorflow/tensorflow/blob/master/SECURITY.md). If you can give me a minimal example (i.e. something I just can copy and paste), I'll take a look. You...
I changed the code in function ` _get_concrete_functions_and_graph_def` to following: ``` def _get_concrete_functions_and_graph_def(self): saved_model = self.model sv = saved_model.signatures.values() cfs = sv if isinstance(sv, list) else list(sv) graph_def = self._graph_def_from_concrete_fn(cfs)...
I have the same problem. Absolute path doesn't help. Copied mvnd executabel to /bin/mvnd when runnint mvnd I got an error: `/bin/mvnd: No such file or directory`
@gnodet My alpine version is 3.9.4. Packages installed in docker container: `apk add --no-cache bash curl tar procps` Dockerfile: `FROM alpine:3.9.4 RUN apk add --no-cache curl bash tar procps ENTRYPOINT...
> It seems to work for me: > > ``` > ➜ ~ docker run --rm -it jenkins/inbound-agent:latest-alpine-jdk11 bash > bash-5.1$ wget https://github.com/apache/maven-mvnd/releases/download/0.7.1/mvnd-0.7.1-linux-amd64.zip > Connecting to github.com (140.82.121.3:443) > Connecting...
@gnodet I am using the same docker image and mvnd version as above ``` ❯ docker run --rm -it jenkins/inbound-agent:latest-alpine-jdk11 bash 53ccb7b812cd:~$ wget https://github.com/apache/maven-mvnd/releases/download/0.7.1/mvnd-0.7.1-linux-amd64.zip Connecting to github.com (140.82.121.4:443) Connecting to...
@gnodet The same problem ``` ❯ docker run --rm --user jenkins -it jenkins/inbound-agent:latest-alpine-jdk11 bash b89da0d9f89d:~$ wget https://github.com/apache/maven-mvnd/releases/download/0.7.1/mvnd-0.7.1-linux-amd64.zip Connecting to github.com (140.82.121.3:443) Connecting to objects.githubusercontent.com (185.199.111.133:443) saving to 'mvnd-0.7.1-linux-amd64.zip' mvnd-0.7.1-linux-amd 100%...
@gnodet It helped, thank you!