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
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,8 @@ The common issues we run into we try to document here [Troubleshooting Guide](Tr
17
17
18
18
| Build Type | OS | Python | TensorFlow | ONNX opset | Status |
19
19
| --- | --- | --- | --- | --- | --- |
20
-
| Unit Test - Basic | Linux, MacOS<sup>\*</sup>, Windows<sup>\*</sup> | 3.7-3.10 | 1.13-1.15, 2.1-2.10 |13-17|[](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_build/latest?definitionId=16&branchName=main)|
21
-
| Unit Test - Full | Linux, MacOS, Windows | 3.7-3.10 | 1.13-1.15, 2.1-2.10 |13-17|[](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_build/latest?definitionId=18&branchName=main)||
20
+
| Unit Test - Basic | Linux, MacOS<sup>\*</sup>, Windows<sup>\*</sup> | 3.7-3.10 | 1.13-1.15, 2.1-2.10 |14-18|[](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_build/latest?definitionId=16&branchName=main)|
21
+
| Unit Test - Full | Linux, MacOS, Windows | 3.7-3.10 | 1.13-1.15, 2.1-2.10 |14-18|[](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_build/latest?definitionId=18&branchName=main)||
22
22
<br/>
23
23
24
24
## Supported Versions
@@ -27,10 +27,10 @@ The common issues we run into we try to document here [Troubleshooting Guide](Tr
27
27
28
28
tf2onnx will use the ONNX version installed on your system and installs the latest ONNX version if none is found.
29
29
30
-
We support and test ONNX opset-13 to opset-17. opset-6 to opset-12 should work but we don't test them.
31
-
By default we use ```opset-13``` for the resulting ONNX graph.
30
+
We support and test ONNX opset-14 to opset-18. opset-6 to opset-13 should work but we don't test them.
31
+
By default we use ```opset-15``` for the resulting ONNX graph.
32
32
33
-
If you want the graph to be generated with a specific opset, use ```--opset``` in the command line, for example ```--opset 13```.
33
+
If you want the graph to be generated with a specific opset, use ```--opset``` in the command line, for example ```--opset 15```.
34
34
35
35
### TensorFlow
36
36
@@ -97,9 +97,9 @@ To get started with `tensorflow-onnx`, run the `t2onnx.convert` command, providi
The above command uses a default of `13` for the ONNX opset. If you need a newer opset, or want to limit your model to use an older opset then you can provide the `--opset` argument to the command. If you are unsure about which opset to use, refer to the [ONNX operator documentation](https://github.com/onnx/onnx/releases).
100
+
The above command uses a default of `15` for the ONNX opset. If you need a newer opset, or want to limit your model to use an older opset then you can provide the `--opset` argument to the command. If you are unsure about which opset to use, refer to the [ONNX operator documentation](https://github.com/onnx/onnx/releases).
If your TensorFlow model is in a format other than `saved model`, then you need to provide the inputs and outputs of the model graph.
105
105
@@ -192,7 +192,7 @@ ONNX requires default values for graph inputs to be constant, while Tensorflow's
192
192
193
193
#### --opset
194
194
195
-
By default we use the opset 13 to generate the graph. By specifying ```--opset``` the user can override the default to generate a graph with the desired opset. For example ```--opset 17``` would create a onnx graph that uses only ops available in opset 17. Because older opsets have in most cases fewer ops, some models might not convert on a older opset.
195
+
By default we use the opset 15 to generate the graph. By specifying ```--opset``` the user can override the default to generate a graph with the desired opset. For example ```--opset 17``` would create a onnx graph that uses only ops available in opset 17. Because older opsets have in most cases fewer ops, some models might not convert on an older opset.
0 commit comments