You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, run following commands in tensorflow-onnx root directory:
59
+
```
60
+
python -m tf2onnx.convert\
61
+
--input tests/models/fc-layers/frozen.pb\
62
+
--inputs X:0\
63
+
--outputs output:0\
64
+
--output tests/models/fc-layers/model.onnx\
65
+
--verbose
51
66
```
52
67
53
68
To convert a TensorFlow model, tf2onnx expects a ```frozen TensorFlow graph``` and the user needs to specify inputs and outputs for the graph by passing the input and output
0 commit comments