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: docs/VersionConverter.md
+7-10
Original file line number
Diff line number
Diff line change
@@ -1,16 +1,11 @@
1
1
# ONNX Version Converter
2
2
3
-
ONNX provides a C++ library for converting ONNX models between different
4
-
opset versions. The library leverages the convenient in-memory
5
-
representation that is much more convenient to manipulate than the raw
6
-
protobuf structs, and converters to and from the protobuf format which
7
-
were developed for the ONNX Optimizer.
8
-
9
-
The primary motivation is to improve backwards compatibility of ONNX
3
+
ONNX provides a library for converting ONNX models between different
4
+
opset versions. The primary motivation is to improve backwards compatibility of ONNX
10
5
models without having to strengthen the spec for ONNX backends. This
11
6
allows backend developers to offer support for a particular opset version
12
7
and for users to write or export models to a particular opset version but
13
-
run in an environment with a different opset version.
8
+
run in an environment with a different opset version. Implementation wise, the library leverages the in-memory representation that is much more convenient to manipulate than the raw protobuf structs, and converters to and from the protobuf format which were developed for the ONNX Optimizer.
14
9
15
10
You may be interested in invoking the provided op-specific adapters, or in
16
11
implementing new ones (or both). Default adapters only work in the default
@@ -19,7 +14,9 @@ conversion methods, dependent on the nature of relevant breaking changes.
19
14
20
15
## Invoking The Version Converter
21
16
22
-
The version converter may be invoked either via C++ or Python. The Python API
17
+
The version converter may be invoked either via C++ or Python.
0 commit comments