Skip to content

Commit f473741

Browse files
authored
NN Test - Fix for ONNX (#1295)
1 parent fb32011 commit f473741

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

MIVisionX-setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@
349349
# Install CAFFE Deps
350350
os.system('sudo pip3 install google==3.0.0 protobuf==3.12.4')
351351
# Install ONNX Deps
352-
os.system('sudo pip3 install onnx==1.11.0')
352+
os.system('sudo pip3 install onnx==1.12.0')
353353
# Install NNEF Deps
354354
os.system('mkdir -p '+modelCompilerDeps+'/nnef-deps')
355355
os.system(

model_compiler/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ sudo pip3 install google==3.0.0 protobuf==3.12.4
7272
* protobuf
7373
* onnx
7474
```
75-
sudo pip3 install protobuf==3.12.4 onnx==1.11.0
75+
sudo pip3 install protobuf==3.12.4 onnx==1.12.0
7676
```
7777
**Note:**
7878
* ONNX Models are available at [ONNX Model Zoo](https://github.com/onnx/models)

tests/neural_network_tests/runNeuralNetworkTests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def script_info():
279279
# Install CAFFE Deps
280280
os.system('sudo pip3 install google==3.0.0 protobuf==3.12.4')
281281
# Install ONNX Deps
282-
os.system('sudo pip3 install onnx==1.11.0')
282+
os.system('sudo pip3 install onnx==1.12.0')
283283
# Install NNEF Deps
284284
os.system('mkdir -p '+modelCompilerDeps+'/nnef-deps')
285285
os.system(

0 commit comments

Comments
 (0)