onnx / onnx

Open standard for machine learning interoperability
https://onnx.ai/
Apache License 2.0
17.91k stars 3.67k forks source link

Conversion from the opset-8 Scan op to opset-9 (or newer). #4321

Closed negiyas closed 2 years ago

negiyas commented 2 years ago

Ask a Question

Question

Can we rewrite(convert) opset-8 of onnx.Scan op with opset-9 (or newer) of onnx.Scan (or another) op?

Further information

jcwchen commented 2 years ago

Hi @negiyas, ONNX does have an adapter (Scan-8 to Scan-9) to support such a conversion in onnx.version_converter. You can try the example to convert your opset 8 ONNX models into opset 9.

negiyas commented 2 years ago

Hi @jcwchen, I am looking at the Scan-8 to Scan-9 adapter. Thank you very much for your helpful answer.