Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
SERHANI
/
skin_disease
like
0
Object Detection
PyTorch
custom
English
ultralytics
yolov11
computer-vision
Inference Endpoints
License:
mit
Model card
Files
Files and versions
Community
Deploy
50af735
skin_disease
/
inference.py
SERHANI
Upload inference.py with huggingface_hub
3496472
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
155 Bytes
from
ultralytics
import
YOLO
import
torch
def
run_inference
(
image_path
):
model = YOLO(
'model.pt'
)
results = model(image_path)
return
results