Anas090 commited on
Commit
45bf328
·
verified ·
1 Parent(s): 9f4d6cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -3,10 +3,10 @@ import cv2
3
  import onnxruntime
4
  import numpy as np
5
 
6
- onnx_model_vgg19_path = r"vgg19.onnx"
7
- onnx_model_inceptionv3_path = r"InceptionV3-20epochs.onnx"
8
- onnx_model_resnet101_path = r"Resnet101-30epochs.onnx"
9
- onnx_model_vgg16_path = r"vgg16.onnx"
10
 
11
 
12
 
 
3
  import onnxruntime
4
  import numpy as np
5
 
6
+ onnx_model_vgg19_path = "./vgg19.onnx"
7
+ onnx_model_inceptionv3_path = "./InceptionV3-20epochs.onnx"
8
+ onnx_model_resnet101_path = "./Resnet101-30epochs.onnx"
9
+ onnx_model_vgg16_path = "./vgg16.onnx"
10
 
11
 
12