Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NN Inference Setup - Use ONNX 1.12.0 #1294

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MIVisionX-setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@
# Install CAFFE Deps
os.system('sudo pip3 install google==3.0.0 protobuf==3.12.4')
# Install ONNX Deps
os.system('sudo pip3 install onnx==1.11.0')
os.system('sudo pip3 install onnx==1.12.0')
# Install NNEF Deps
os.system('mkdir -p '+modelCompilerDeps+'/nnef-deps')
os.system(
Expand Down
2 changes: 1 addition & 1 deletion model_compiler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ sudo pip3 install google==3.0.0 protobuf==3.12.4
* protobuf
* onnx
```
sudo pip3 install protobuf==3.12.4 onnx==1.11.0
sudo pip3 install protobuf==3.12.4 onnx==1.12.0
```
**Note:**
* ONNX Models are available at [ONNX Model Zoo](https://github.com/onnx/models)
Expand Down
2 changes: 1 addition & 1 deletion tests/neural_network_tests/runNeuralNetworkTests.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def script_info():
# Install CAFFE Deps
os.system('sudo pip3 install google==3.0.0 protobuf==3.12.4')
# Install ONNX Deps
os.system('sudo pip3 install onnx==1.11.0')
os.system('sudo pip3 install onnx==1.12.0')
# Install NNEF Deps
os.system('mkdir -p '+modelCompilerDeps+'/nnef-deps')
os.system(
Expand Down