Views
No views yet
| Model | KMAPPs* | M Parameters | Accuracy (224x224) | Accuracy (240x240) |
|---|---|---|---|---|
| timm/fbnetv3_g.ra2_in1k (baseline) | 42.75 | 16.6 | 80.61% | 81.32% |
| fbnetv3_g_pruned_75 (ours) | 32.15 (75%) | 13.1 (79%) | 80.30% (↓ 0.31%) | 80.25% (↓ 1.107%) |
KMAPPs(model) = FLOPs(model) / (H * W * 1000), where (H, W) is the input resolution.pip bypip install torch-dag# Make sure you have git-lfs installed (https://git-lfs.com)
git lfs install
git clone https://huggingface.co/TCLResearchEurope/fbnetv3_g_pruned_75import torch_dag
import torch
model = torch_dag.io.load_dag_from_path('./fbnetv3_g_pruned_75')
model.eval()
out = model(torch.ones(1, 3, 224, 224))
print(out.shape)