Skip to content

Commit dcc6a4f

Browse files
committed
update supported versions in README
1 parent c76ced3 commit dcc6a4f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ tf2onnx - convert TensorFlow models to ONNX models.
66
# Supported ONNX version
77
tensorflow-onnx will use the ONNX version installed on your system and installs the latest ONNX version if none is found.
88

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.
1010

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```.
1212

1313
# Status
1414
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:
4141
We tested with pytorch/caffe2 and onnxruntime and unit tests are passing for those.
4242

4343
## 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**.
4545

4646
# Installation
4747
## From pypi
@@ -55,7 +55,7 @@ python setup.py install
5555
or
5656
python setup.py develop
5757
```
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.
5959

6060
To create a distribution:
6161
```
@@ -69,10 +69,10 @@ names with ```--inputs INPUTS``` and ```--outputs OUTPUTS```.
6969

7070
```
7171
python -m tf2onnx.convert
72-
--input SOURCE_GRAPHDEF_PB
73-
--graphdef SOURCE_GRAPHDEF_PB
74-
--checkpoint SOURCE_CHECKPOINT
75-
--saved-model SOURCE_SAVED_MODEL
72+
[--input SOURCE_GRAPHDEF_PB]
73+
[--graphdef SOURCE_GRAPHDEF_PB]
74+
[--checkpoint SOURCE_CHECKPOINT]
75+
[--saved-model SOURCE_SAVED_MODEL]
7676
[--output TARGET_ONNX_MODEL]
7777
[--inputs GRAPH_INPUTS]
7878
[--outputs GRAPH_OUTPUS]

0 commit comments

Comments
 (0)