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
tensorflow-onnx will use the ONNX version installed on your system and installs the latest ONNX version if none is found.
8
8
9
-
By default we use opset 7 for the resulting ONNX graph since most runtimes will support opset 7. Opset 7 was introduced in onnx-1.2.
9
+
We support opset 6 to 10. By default we use opset 7 for the resulting ONNX graph since most runtimes will support opset 7.
10
10
11
-
Newer releases of ONNX support higher opsets. For example, to create an ONNX graph for opset 8 use in the command line```--opset 8```.
11
+
If you want the graph to be generated with a newer opset, use ```--opset```in the command line, for example ```--opset 10```.
12
12
13
13
# Status
14
14
We support many TensorFlow models. Support for Fully Connected and Convolutional networks is mature. Dynamic LSTM/GRU/Attention networks should work but the code for this is evolving.
@@ -41,7 +41,7 @@ For pytorch/caffe2, follow the instructions here:
41
41
We tested with pytorch/caffe2 and onnxruntime and unit tests are passing for those.
42
42
43
43
## Supported Tensorflow and Python Versions
44
-
We tested with tensorflow 1.5-1.13 and anaconda **3.5,3.6**.
44
+
We are testing with tensorflow 1.5-1.13 and anaconda **3.5,3.6,3.7**.
45
45
46
46
# Installation
47
47
## From pypi
@@ -55,7 +55,7 @@ python setup.py install
55
55
or
56
56
python setup.py develop
57
57
```
58
-
tensorflow-onnx requires onnx-1.2.2 or better and will install/upgrade onnx if needed.
58
+
tensorflow-onnx requires onnx-1.5 or better and will install/upgrade onnx if needed.
59
59
60
60
To create a distribution:
61
61
```
@@ -69,10 +69,10 @@ names with ```--inputs INPUTS``` and ```--outputs OUTPUTS```.
0 commit comments