Spaces:
Sleeping
Sleeping
File size: 270 Bytes
e70ee4e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import json
import gradio as gr
import yolov5
from PIL import Image
from huggingface_hub import hf_hub_download
import os
app_title = "Detect san pham VSK"
model_ids = ['linhcuem/gold_yolov5m']
current_model_id = model_ids[-1]
model = yolov5.load(current_model_id)
|