Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -5,10 +5,10 @@ import onnxruntime as rt
|
|
| 5 |
import cv2
|
| 6 |
import json
|
| 7 |
import gradio as gr
|
| 8 |
-
|
| 9 |
import onnxruntime as rt
|
| 10 |
|
| 11 |
-
|
| 12 |
# load the labels text file
|
| 13 |
labels = json.load(open("labels_map.txt", "r"))
|
| 14 |
|
|
@@ -48,7 +48,7 @@ def center_crop(img, out_height, out_width):
|
|
| 48 |
return img
|
| 49 |
|
| 50 |
|
| 51 |
-
sess = rt.InferenceSession(
|
| 52 |
|
| 53 |
def inference(img):
|
| 54 |
img = cv2.imread(img)
|
|
|
|
| 5 |
import cv2
|
| 6 |
import json
|
| 7 |
import gradio as gr
|
| 8 |
+
from huggingface_hub import hf_hub_download
|
| 9 |
import onnxruntime as rt
|
| 10 |
|
| 11 |
+
modele = hf_hub_download(repo_id="onnx/EfficientNet-Lite4", filename="efficientnet-lite4-11.onnx")
|
| 12 |
# load the labels text file
|
| 13 |
labels = json.load(open("labels_map.txt", "r"))
|
| 14 |
|
|
|
|
| 48 |
return img
|
| 49 |
|
| 50 |
|
| 51 |
+
sess = rt.InferenceSession(modele)
|
| 52 |
|
| 53 |
def inference(img):
|
| 54 |
img = cv2.imread(img)
|