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-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,16 @@
2
2
3
3
| Build Type | OS | Python | Tensorflow | Onnx opset | Status |
4
4
| --- | --- | --- | --- | --- | --- |
5
-
| Unit Test - Basic | Linux, MacOS<sup>\*</sup>, Windows<sup>\*</sup> | 3.6, 3.7 | 1.12-1.15, 2.1 | 7-11|[](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_build/latest?definitionId=16&branchName=master)|
6
-
| Unit Test - Full | Linux, MacOS, Windows | 3.6, 3.7 | 1.12-1.15, 2.1 | 7-11|[](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_build/latest?definitionId=18&branchName=master)||
5
+
| Unit Test - Basic | Linux, MacOS<sup>\*</sup>, Windows<sup>\*</sup> | 3.6, 3.7 | 1.12-1.15, 2.1-2.2| 7-12|[](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_build/latest?definitionId=16&branchName=master)|
6
+
| Unit Test - Full | Linux, MacOS, Windows | 3.6, 3.7 | 1.12-1.15, 2.1-2.2| 7-12|[](https://dev.azure.com/tensorflow-onnx/tensorflow-onnx/_build/latest?definitionId=18&branchName=master)||
7
7
8
8
## Supported Versions
9
9
10
10
### ONNX
11
11
12
12
tensorflow-onnx will use the ONNX version installed on your system and installs the latest ONNX version if none is found.
13
13
14
-
We support opset 6 to 11. By default we use opset8 for the resulting ONNX graph since most runtimes will support opset8.
14
+
We support ONNX opset-6 to opset-12. By default we use opset-8 for the resulting ONNX graph since most runtimes will support opset-8.
15
15
Support for future opsets add added as they are released.
16
16
17
17
If you want the graph to be generated with a specific opset, use ```--opset``` in the command line, for example ```--opset 11```.
@@ -20,13 +20,14 @@ If you want the graph to be generated with a specific opset, use ```--opset``` i
20
20
21
21
We support all ```tf-1.x graphs```. To keep our test matrix manageable we test tf2onnx running on top of ```tf-1.12 and up```. tf2onnx-1.5.4 was the last version that was tested all the way back to tf-1.4.
22
22
23
-
There is now ```experimental support for tf-2.x```. Basic unit tests are passing as well as control flow.
23
+
There is now ```experimental support for tf-2.x```.
24
+
With the exception of LSTM unit tests, all unit tests are enabled and passing.
24
25
Unit tests that we still need to fix are marked with ```@skip_tf2```.
25
26
GRU/LSTM's are converting but not runnable due to type/shape inference issues at runtime (working on that one).
26
-
All unit tests are running in eager mode and after execution we take the python function, make it a graph and convert this to onnx.
27
-
If running under tf-2.x we are using the tensorflow V2 controlflow.
27
+
All unit tests are running in eager mode. After execution we take the python function, make it a graph and convert it to ONNX.
28
+
When running under tf-2.x tf2onnx will use the tensorflow V2 controlflow.
28
29
29
-
You can install tf2onnx on top of tf-1.x or tf-2.x and convert tf-1.x or tf-2.x models.
30
+
You can install tf2onnx on top of tf-1.x or tf-2.x.
0 commit comments