Views
No views yet
yolov8n-cls.ptatopic_dermatitis, bacterial_pyoderma, fungal_malassezia, healthy| Setting | Value |
|---|---|
| Base weights | yolov8n-cls.pt (Ultralytics, AGPL-3.0) |
| Epochs | 50 |
| Batch size | 32 |
| Image size | 224 |
| Optimizer | auto |
| Hardware | 1× Tesla T4 (Lightning AI Studio), ~2 min |
| Seed | 0 (deterministic) |
args.yaml. Per-epoch metrics are in
results.csv; training curves in results.png; confusion
matrices in confusion_matrix.png /
confusion_matrix_normalized.png.yashmotiani/dogs-skin-disease-dataset (CC0)1from ultralytics import YOLO
2
3model = YOLO("best.pt") # or hf_hub_download the weights first
4result = model.predict("dog_skin.jpg")[0]
5print(result.names[result.probs.top1], float(result.probs.top1conf))weights/best.pt — best checkpoint (epoch 24, top-1 0.8523) — use this for inferenceweights/last.pt — final checkpoint (epoch 50)args.yaml, results.csv, results.png, confusion_matrix*.png, *_batch*.jpg — training provenance