Views
No views yet
.pt file and linked to the dataset version used for the corresponding experiment.Safety note: this model is intended for research, prototyping, and application experiments. Do not use it as the sole authority for snake identification, emergency response, or animal handling decisions.
| Field | Value |
|---|---|
| File | SnakeTraining_V4_YOLOv12_Khiem_Bbox5000_20251213_1828.pt |
| Size | 37.96 MB |
| SHA256 | b215c030b8f482dcaeed15e4838ad9e6d4c474beefbd330cc5e45cc4c893872b |
| Dataset | the-khiem7/snakeaid-yolov12-5000-bbox |
| Architecture | YOLOv12 |
| Version | v4 |
| Trained by | Khiem |
the-khiem7/snakeaid-yolov12-5000-bbox.datasets field so Hugging Face can display the training-data relationship.1from huggingface_hub import hf_hub_download
2
3checkpoint_path = hf_hub_download(
4 repo_id="the-khiem7/snakeaid-detect-yolov12-v4-5000bbox",
5 filename="SnakeTraining_V4_YOLOv12_Khiem_Bbox5000_20251213_1828.pt",
6)
7print(checkpoint_path)1from huggingface_hub import hf_hub_download
2from ultralytics import YOLO
3
4checkpoint_path = hf_hub_download(
5 repo_id="the-khiem7/snakeaid-detect-yolov12-v4-5000bbox",
6 filename="SnakeTraining_V4_YOLOv12_Khiem_Bbox5000_20251213_1828.pt",
7)
8model = YOLO(checkpoint_path)
9results = model.predict("path/to/image.jpg")