Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from ultralytics import YOLO
|
3 |
+
from PIL import Image
|
4 |
+
import torch
|
5 |
+
|
6 |
+
# Load your model
|
7 |
+
model = YOLO('HockeyAI_model_weight.pt')
|
8 |
+
|
9 |
+
def predict(image):
|
10 |
+
# Convert gradio image to PIL
|
11 |
+
if isinstance(image, str):
|
12 |
+
image = Image.open(image)
|
13 |
+
|
14 |
+
# Run inference
|
15 |
+
results = model.predict(image)
|
16 |
+
|
17 |
+
# Get the plotted image with predictions
|
18 |
+
return results[0].plot()
|
19 |
+
|
20 |
+
# Create Gradio interface
|
21 |
+
demo = gr.Interface(
|
22 |
+
fn=predict,
|
23 |
+
inputs=gr.Image(),
|
24 |
+
outputs=gr.Image(),
|
25 |
+
title="YOLOv8 Object Detection",
|
26 |
+
description="Upload an image to detect objects using YOLOv8"
|
27 |
+
)
|
28 |
+
|
29 |
+
demo.launch()
|