Views
No views yet
| Metric | Value |
|---|---|
| Top-1 Accuracy | 79.9% |
| Mean IoU | 0.468 |
| IoU@0.5 Accuracy | 49.2% |
1import torch
2from huggingface_hub import hf_hub_download
3
4checkpoint_path = hf_hub_download(
5 repo_id="OmUniyal/cv-multitask-pipeline",
6 filename="best_model.pt"
7)
8checkpoint = torch.load(checkpoint_path, map_location="cpu", weights_only=True)