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

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model is not currently available via any of the supported Inference Providers.
The model cannot be deployed to the HF Inference API: The model has no library tag.