Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ import gradio as gr
|
|
5 |
|
6 |
# Load the YOLO model
|
7 |
MODEL_URL = 'https://huggingface.co/ayoubsa/yolo_model/resolve/main/best.pt'
|
8 |
-
model = YOLO(MODEL_URL)
|
9 |
|
10 |
# Define the prediction function for Gradio
|
11 |
def predict(image):
|
|
|
5 |
|
6 |
# Load the YOLO model
|
7 |
MODEL_URL = 'https://huggingface.co/ayoubsa/yolo_model/resolve/main/best.pt'
|
8 |
+
model = YOLO(MODEL_URL, cache_dir="/root/.cache")
|
9 |
|
10 |
# Define the prediction function for Gradio
|
11 |
def predict(image):
|