Skip to content

Commit

Permalink
NN Inference Setup - Use ONNX 1.12.0 (#1294)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiritigowda committed Mar 12, 2024
1 parent 8e1d9c8 commit 749948b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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

0 comments on commit 749948b

Please sign in to comment.