Reputation: 21
python mo --input_model number.onnx
run the above code in OpenVino model_optimizer cmd I get the error ( The "number.onnx" is not existing file)
Upvotes: 0
Views: 824
Reputation: 134
The correct command is to give the full path of your model location.
python mo --input_model <INPUT_MODEL_PATH>\model.onnx
Refer to Converting an ONNX model.
Upvotes: 0