Skip to content

Commit

Permalink
Fix path to config in sota. Update Readme.md. (#1146)
Browse files Browse the repository at this point in the history
  • Loading branch information
asenina authored Mar 24, 2022
1 parent 365d05b commit 9ac2dae
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ to find instruction and links to exact configuration files and final checkpoints
|ResNet-18|DoReFa (weights), scale/threshold (activations)|ImageNet|61.61 (8.19)|
|ResNet-18|Filter pruning, 40%, magnitude criterion|ImageNet|69.26 (0.54)|
|ResNet-18|Filter pruning, 40%, geometric median criterion|ImageNet|69.32 (0.48)|
|ResNet-34|Filter pruning, 40%, geometric median criterion|ImageNet|72.73 (0.57)|
|ResNet-34|Filter pruning, 50%, geometric median criterion + KD|ImageNet|73.11 (0.19)|
|GoogLeNet|Filter pruning, 40%, geometric median criterion|ImageNet|68.82 (0.93)|

<a name="pytorch_object_detection"></a>
Expand Down
10 changes: 5 additions & 5 deletions tests/torch/sota_checkpoints_eval.json
Original file line number Diff line number Diff line change
Expand Up @@ -259,14 +259,14 @@
"metric_type": "Acc@1",
"model_description": "ResNet-34"
},
"resnet34_imagenet_filter_pruning_geomean": {
"config": "examples/torch/classification/configs/pruning/resnet34_pruning_geometric_median.json",
"resnet34_imagenet_filter_pruning_geomean_kd": {
"config": "examples/torch/classification/configs/pruning/resnet34_pruning_geometric_median_kd.json",
"reference": "resnet34_imagenet",
"target": 72.73,
"target": 73.11,
"metric_type": "Acc@1",
"resume": "resnet34_imagenet_filter_pruning_geomean.pth",
"resume": "resnet34_imagenet_filter_pruning_geomean_kd.pth",
"model_description": "ResNet-34",
"compression_description": "Filter pruning, 40%, geometric median criterion"
"compression_description": "Filter pruning, 50%, geometric median criterion + KD"
},
"googlenet_imagenet": {
"config": "examples/torch/classification/configs/pruning/googlenet_imagenet.json",
Expand Down

0 comments on commit 9ac2dae

Please sign in to comment.