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
Save ConvertTransform as ONNX Operator and Control the Use of Experimental Features with a Flag (#947)
* Some changes for adding experimental conversion to ONNX
1. Introduce a new argument to SaveOnnx, which is OnnxVersion.
Two values are currently allowed, "Latest" and "Experimental".
Note that "Latest" means that the produced ONNX model meets
the latest ONNX release while "Experimental" may produce
things not officially supported in ONNX.
2. For (1), the interface of saving ONNX is slightly changed. Now,
CanSaveOnnx requires an OnnxContext as its input argument.
3. Add exporter for ConvertTransform. It doesn't use standard
ONNX operator.
* Update CSharpAPI and entry point
* Address one comment
* Update old APIs to reflect enum's change
* Extend doc string for targeted version
* Address comments
* Update API
0 commit comments