How to adjust a Neural Networks metadata
Revision as of 12:07, 19 December 2024 by Frank@tygron.nl (talk | contribs) (Created page with " <pre> import onnx </pre> Save the onnx model to file: <pre> with open(onnxFilePath, "wb") as f: f.write(onnx_model.SerializeToString()) </pre>")
import onnx
Save the onnx model to file:
with open(onnxFilePath, "wb") as f: f.write(onnx_model.SerializeToString())