Edit model card

Dze je Miku? 🥵 (where is Miku)

Finetuned YOLOv8s on 200 labeled Miku photos for 150 epochs, detects a Hatsune Miku doll in an image 🥰.

Demo WASM deploy (runs in your browser): https://plasmoxy.github.io/dzejemiku

!pip install -U "huggingface_hub[cli]"
!pip install ultralytics
!huggingface-cli download Plasmoxy/dze-je-miku-yolo miku_yolo.pt --local-dir .

from ultralytics import YOLO

model = YOLO('./miku_yolo.pt')

res = model.predict([
    'test.jpeg'
], save=True, save_txt=True)

for r in res:
  for b in r.boxes:
    print(b.xyxy)
Downloads last month
0
Inference API
Unable to determine this model's library. Check the docs .