[Feature] Adding PWC metafile (#225)
* add yml * fix VGG * minor fix * add model zoo * add bs and epoch * revised according to comments * revised according to comments * revised according to commentspull/229/head
parent
3d87474c71
commit
a604cd97ef
|
@ -0,0 +1,30 @@
|
|||
Collections:
|
||||
- Name: FP16
|
||||
Metadata:
|
||||
Training Data: ImageNet
|
||||
Training Resources: 8x V100 GPUs
|
||||
Training Techniques:
|
||||
- SGD with Momentum
|
||||
- Weight Decay
|
||||
- Mixed Precision Training
|
||||
Paper: https://arxiv.org/abs/1710.03740
|
||||
README: configs/fp16/README.md
|
||||
|
||||
Models:
|
||||
- Config: configs/fp16/resnet50_b32x8_fp16_dynamic_imagenet.py
|
||||
In Collection: FP16
|
||||
Metadata:
|
||||
FLOPs: 4120000000
|
||||
Parameters: 25560000
|
||||
Epochs: 100
|
||||
Batch Size: 256
|
||||
Architecture:
|
||||
- ResNet
|
||||
Name: resnet50_b32x8_fp16_dynamic_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 76.32
|
||||
Top 5 Accuracy: 93.04
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/fp16/resnet50_batch256_fp16_imagenet_20210320-b3964210.pth
|
|
@ -0,0 +1,29 @@
|
|||
Collections:
|
||||
- Name: MobileNet V2
|
||||
Metadata:
|
||||
Training Data: ImageNet
|
||||
Training Techniques:
|
||||
- SGD with Momentum
|
||||
- Weight Decay
|
||||
Training Resources: 8x V100 GPUs
|
||||
Epochs: 300
|
||||
Batch Size: 256
|
||||
Architecture:
|
||||
- MobileNet V2
|
||||
Paper: https://arxiv.org/abs/1801.04381
|
||||
README: configs/mobilenet_v2/README.md
|
||||
|
||||
Models:
|
||||
- Config: configs/mobilenet_v2/mobilenet_v2_b32x8_imagenet.py
|
||||
In Collection: MobileNet V2
|
||||
Metadata:
|
||||
FLOPs: 319000000
|
||||
Parameters: 3500000
|
||||
Name: mobilenet_v2_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 71.86
|
||||
Top 5 Accuracy: 90.42
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/mobilenet_v2/mobilenet_v2_batch256_imagenet_20200708-3b2dc3af.pth
|
|
@ -0,0 +1,217 @@
|
|||
Collections:
|
||||
- Name: ResNet
|
||||
Metadata:
|
||||
Training Data: ImageNet
|
||||
Training Techniques:
|
||||
- SGD with Momentum
|
||||
- Weight Decay
|
||||
Training Resources: 8x V100 GPUs
|
||||
Epochs: 100
|
||||
Batch Size: 256
|
||||
Architecture:
|
||||
- ResNet
|
||||
Paper: https://openaccess.thecvf.com/content_cvpr_2016/html/He_Deep_Residual_Learning_CVPR_2016_paper.html
|
||||
README: configs/resnet/README.md
|
||||
|
||||
Models:
|
||||
- Config: configs/resnet/resnet18_b16x8_cifar10.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 560000000
|
||||
Parameters: 11170000
|
||||
Training Data: CIFAR-10
|
||||
Training Resources: 8x 1080 GPUs
|
||||
Epochs: 200
|
||||
Batch Size: 128
|
||||
Name: resnet18_b16x8_cifar10
|
||||
Results:
|
||||
- Dataset: CIFAR-10
|
||||
Metrics:
|
||||
Top 1 Accuracy: 94.72
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnet18_b16x8_cifar10_20200823-f906fa4e.pth
|
||||
- Config: configs/resnet/resnet34_b16x8_cifar10.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 1160000000
|
||||
Parameters: 21280000
|
||||
Training Data: CIFAR-10
|
||||
Training Resources: 8x 1080 GPUs
|
||||
Epochs: 200
|
||||
Batch Size: 128
|
||||
Name: resnet34_b16x8_cifar10
|
||||
Results:
|
||||
- Dataset: CIFAR-10
|
||||
Metrics:
|
||||
Top 1 Accuracy: 95.34
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnet34_b16x8_cifar10_20200823-52d5d832.pth
|
||||
- Config: configs/resnet/resnet50_b16x8_cifar10.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 1310000000
|
||||
Parameters: 23520000
|
||||
Training Data: CIFAR-10
|
||||
Training Resources: 8x 1080 GPUs
|
||||
Epochs: 200
|
||||
Batch Size: 128
|
||||
Name: resnet50_b16x8_cifar10
|
||||
Results:
|
||||
- Dataset: CIFAR-10
|
||||
Metrics:
|
||||
Top 1 Accuracy: 95.36
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnet50_b16x8_cifar10_20200823-882aa7b1.pth
|
||||
- Config: configs/resnet/resnet101_b16x8_cifar10.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 2520000000
|
||||
Parameters: 42510000
|
||||
Training Data: CIFAR-10
|
||||
Training Resources: 8x 1080 GPUs
|
||||
Epochs: 200
|
||||
Batch Size: 128
|
||||
Name: resnet101_b16x8_cifar10
|
||||
Results:
|
||||
- Dataset: CIFAR-10
|
||||
Metrics:
|
||||
Top 1 Accuracy: 95.66
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnet101_b16x8_cifar10_20200823-d9501bbc.pth
|
||||
- Config: configs/resnet/resnet152_b16x8_cifar10.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 3740000000
|
||||
Parameters: 58160000
|
||||
Training Data: CIFAR-10
|
||||
Training Resources: 8x 1080 GPUs
|
||||
Epochs: 200
|
||||
Batch Size: 128
|
||||
Name: resnet152_b16x8_cifar10
|
||||
Results:
|
||||
- Dataset: CIFAR-10
|
||||
Metrics:
|
||||
Top 1 Accuracy: 95.96
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnet152_b16x8_cifar10_20200823-ad4d5d0c.pth
|
||||
- Config: configs/resnet/resnet50_b16x8_cifar100.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 1310000000
|
||||
Parameters: 23710000
|
||||
Training Data: CIFAR-100
|
||||
Training Resources: 8x 1080 GPUs
|
||||
Epochs: 200
|
||||
Batch Size: 128
|
||||
Name: resnet50_b16x8_cifar100
|
||||
Results:
|
||||
- Dataset: CIFAR-100
|
||||
Metrics:
|
||||
Top 1 Accuracy: 80.51
|
||||
Top 5 Accuracy: 95.27
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnet50_batch256_cifar100_20210410-37f13c16.pth
|
||||
- Config: configs/resnet/resnet18_b32x8_imagenet.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 1820000000
|
||||
Parameters: 11690000
|
||||
Name: resnet18_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 70.07
|
||||
Top 5 Accuracy: 89.44
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnet18_batch256_imagenet_20200708-34ab8f90.pth
|
||||
- Config: configs/resnet/resnet34_b32x8_imagenet.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 3680000000
|
||||
Parameters: 2180000
|
||||
Name: resnet34_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 73.85
|
||||
Top 5 Accuracy: 91.53
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnet34_batch256_imagenet_20200708-32ffb4f7.pth
|
||||
- Config: configs/resnet/resnet50_b32x8_imagenet.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 4120000000
|
||||
Parameters: 25560000
|
||||
Name: resnet50_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 76.55
|
||||
Top 5 Accuracy: 93.15
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnet50_batch256_imagenet_20200708-cfb998bf.pth
|
||||
- Config: configs/resnet/resnet101_b32x8_imagenet.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 7850000000
|
||||
Parameters: 44550000
|
||||
Name: resnet101_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 78.18
|
||||
Top 5 Accuracy: 94.03
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnet101_batch256_imagenet_20200708-753f3608.pth
|
||||
- Config: configs/resnet/resnet152_b32x8_imagenet.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 11580000000
|
||||
Parameters: 60190000
|
||||
Name: resnet152_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 78.63
|
||||
Top 5 Accuracy: 94.16
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnet152_batch256_imagenet_20200708-ec25b1f9.pth
|
||||
- Config: configs/resnet/resnetv1d50_b32x8_imagenet.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 4360000000
|
||||
Parameters: 25580000
|
||||
Name: resnetv1d50_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 77.4
|
||||
Top 5 Accuracy: 93.66
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnetv1d50_batch256_imagenet_20200708-1ad0ce94.pth
|
||||
- Config: configs/resnet/resnetv1d101_b32x8_imagenet.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 8090000000
|
||||
Parameters: 44570000
|
||||
Name: resnetv1d101_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 78.85
|
||||
Top 5 Accuracy: 94.38
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnetv1d101_batch256_imagenet_20200708-9cb302ef.pth
|
||||
- Config: configs/resnet/resnetv1d152_b32x8_imagenet.py
|
||||
In Collection: ResNet
|
||||
Metadata:
|
||||
FLOPs: 11820000000
|
||||
Parameters: 60210000
|
||||
Name: resnetv1d152_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 79.35
|
||||
Top 5 Accuracy: 94.61
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnet/resnetv1d152_batch256_imagenet_20200708-e79cb6a2.pth
|
|
@ -0,0 +1,68 @@
|
|||
Collections:
|
||||
- Name: ResNeXt
|
||||
Metadata:
|
||||
Training Data: ImageNet
|
||||
Training Techniques:
|
||||
- SGD with Momentum
|
||||
- Weight Decay
|
||||
Training Resources: 8x V100 GPUs
|
||||
Epochs: 100
|
||||
Batch Size: 256
|
||||
Architecture:
|
||||
- ResNeXt
|
||||
Paper: https://openaccess.thecvf.com/content_cvpr_2017/html/Xie_Aggregated_Residual_Transformations_CVPR_2017_paper.html
|
||||
README: configs/resnext/README.md
|
||||
|
||||
Models:
|
||||
- Config: configs/resnext/resnext50_32x4d_b32x8_imagenet.py
|
||||
In Collection: ResNeXt
|
||||
Metadata:
|
||||
FLOPs: 4270000000
|
||||
Parameters: 25030000
|
||||
Name: resnext50_32x4d_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 77.92
|
||||
Top 5 Accuracy: 93.74
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnext/resnext50_32x4d_batch256_imagenet_20200708-c07adbb7.pth
|
||||
- Config: configs/resnext/resnext101_32x4d_b32x8_imagenet.py
|
||||
In Collection: ResNeXt
|
||||
Metadata:
|
||||
FLOPs: 8030000000
|
||||
Parameters: 44180000
|
||||
Name: resnext101_32x4d_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 78.7
|
||||
Top 5 Accuracy: 94.34
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnext/resnext101_32x4d_batch256_imagenet_20200708-87f2d1c9.pth
|
||||
- Config: configs/resnext/resnext101_32x8d_b32x8_imagenet.py
|
||||
In Collection: ResNeXt
|
||||
Metadata:
|
||||
FLOPs: 16500000000
|
||||
Parameters: 88790000
|
||||
Name: resnext101_32x8d_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 79.22
|
||||
Top 5 Accuracy: 94.52
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnext/resnext101_32x8d_batch256_imagenet_20200708-1ec34aa7.pth
|
||||
- Config: configs/resnext/resnext152_32x4d_b32x8_imagenet.py
|
||||
In Collection: ResNeXt
|
||||
Metadata:
|
||||
FLOPs: 11800000000
|
||||
Parameters: 59950000
|
||||
Name: resnext152_32x4d_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 79.06
|
||||
Top 5 Accuracy: 94.47
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/resnext/resnext152_32x4d_batch256_imagenet_20200708-aab5034c.pth
|
|
@ -0,0 +1,42 @@
|
|||
Collections:
|
||||
- Name: SEResNet
|
||||
Metadata:
|
||||
Training Data: ImageNet
|
||||
Training Techniques:
|
||||
- SGD with Momentum
|
||||
- Weight Decay
|
||||
Training Resources: 8x V100 GPUs
|
||||
Epochs: 140
|
||||
Batch Size: 256
|
||||
Architecture:
|
||||
- ResNet
|
||||
Paper: https://openaccess.thecvf.com/content_cvpr_2018/html/Hu_Squeeze-and-Excitation_Networks_CVPR_2018_paper.html
|
||||
README: configs/seresnet/README.md
|
||||
|
||||
Models:
|
||||
- Config: configs/seresnet50/seresnet50_b32x8_imagenet.py
|
||||
In Collection: SEResNet
|
||||
Metadata:
|
||||
FLOPs: 4130000000
|
||||
Parameters: 28090000
|
||||
Name: seresnet50_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 77.74
|
||||
Top 5 Accuracy: 93.84
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/se-resnet/se-resnet50_batch256_imagenet_20200804-ae206104.pth
|
||||
- Config: configs/seresnet101/seresnet101_b32x8_imagenet.py
|
||||
In Collection: SEResNet
|
||||
Metadata:
|
||||
FLOPs: 7860000000
|
||||
Parameters: 49330000
|
||||
Name: seresnet101_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 78.26
|
||||
Top 5 Accuracy: 94.07
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/se-resnet/se-resnet101_batch256_imagenet_20200804-ba5b51d4.pth
|
|
@ -0,0 +1,30 @@
|
|||
Collections:
|
||||
- Name: Shufflenet V1
|
||||
Metadata:
|
||||
Training Data: ImageNet
|
||||
Training Techniques:
|
||||
- SGD with Momentum
|
||||
- Weight Decay
|
||||
- No BN decay
|
||||
Training Resources: 8x 1080 GPUs
|
||||
Epochs: 300
|
||||
Batch Size: 1024
|
||||
Architecture:
|
||||
- Shufflenet V1
|
||||
Paper: https://openaccess.thecvf.com/content_cvpr_2018/html/Zhang_ShuffleNet_An_Extremely_CVPR_2018_paper.html
|
||||
README: configs/shufflenet_v1/README.md
|
||||
|
||||
Models:
|
||||
- Config: configs/shufflenet_v1/shufflenet_v1_1x_b64x16_linearlr_bn_nowd_imagenet.py
|
||||
In Collection: Shufflenet V1
|
||||
Metadata:
|
||||
FLOPs: 146000000
|
||||
Parameters: 1870000
|
||||
Name: shufflenet_v1_1x_b64x16_linearlr_bn_nowd_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 68.13
|
||||
Top 5 Accuracy: 87.81
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/shufflenet_v1/shufflenet_v1_batch1024_imagenet_20200804-5d6cec73.pth
|
|
@ -0,0 +1,30 @@
|
|||
Collections:
|
||||
- Name: Shufflenet V2
|
||||
Metadata:
|
||||
Training Data: ImageNet
|
||||
Training Techniques:
|
||||
- SGD with Momentum
|
||||
- Weight Decay
|
||||
- No BN decay
|
||||
Training Resources: 8x 1080 GPUs
|
||||
Epochs: 300
|
||||
Batch Size: 1024
|
||||
Architecture:
|
||||
- Shufflenet V2
|
||||
Paper: https://openaccess.thecvf.com/content_ECCV_2018/papers/Ningning_Light-weight_CNN_Architecture_ECCV_2018_paper.pdf
|
||||
README: configs/shufflenet_v2/README.md
|
||||
|
||||
Models:
|
||||
- Config: configs/shufflenet_v2/shufflenet_v2_1x_b64x16_linearlr_bn_nowd_imagenet.py
|
||||
In Collection: Shufflenet V2
|
||||
Metadata:
|
||||
FLOPs: 149000000
|
||||
Parameters: 2280000
|
||||
Name: shufflenet_v2_1x_b64x16_linearlr_bn_nowd_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 69.55
|
||||
Top 5 Accuracy: 88.92
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/shufflenet_v2/shufflenet_v2_batch1024_imagenet_20200812-5bf4721e.pth
|
|
@ -20,11 +20,11 @@
|
|||
|
||||
| Model | Params(M) | Flops(G) | Top-1 (%) | Top-5 (%) | Config | Download |
|
||||
|:---------------------:|:---------:|:--------:|:---------:|:---------:|:---------:|:--------:|
|
||||
| VGG-11 | 132.86 | 7.63 | 69.03 | 88.63 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg11_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg11_imagenet-01ecd97e.pth)* |
|
||||
| VGG-13 | 133.05 | 11.34 | 69.93 | 89.26 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg13_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg13_imagenet-9ad3945d.pth)*|
|
||||
| VGG-16 | 138.36 | 15.5 | 71.59 | 90.39 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg16_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg16_imagenet-91b6d117.pth)*|
|
||||
| VGG-19 | 143.67 | 19.67 | 72.38 | 90.88 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg19_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg19_imagenet-fee352a8.pth)*|
|
||||
| VGG-11-BN | 132.87 | 7.64 | 70.37 | 89.81 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg11bn_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg11_bn_imagenet-6fbbbf3f.pth)*|
|
||||
| VGG-13-BN | 133.05 | 11.36 | 71.55 | 90.37 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg13bn_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg13_bn_imagenet-4b5f9390.pth)*|
|
||||
| VGG-16-BN | 138.37 | 15.53 | 73.36 | 91.5 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg16_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg16_bn_imagenet-3ac6d8fd.pth)*|
|
||||
| VGG-19-BN | 143.68 | 19.7 | 74.24 | 91.84 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg19bn_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg19_bn_imagenet-7c058385.pth)*|
|
||||
| VGG-11 | 132.86 | 7.63 | 68.75 | 88.87 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg11_b32x8_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg11_batch256_imagenet_20210208-4271cd6c.pth) | [log](https://download.openmmlab.com/mmclassification/v0/vgg/vgg11_batch256_imagenet_20210208-4271cd6c.log.json) |
|
||||
| VGG-13 | 133.05 | 11.34 | 70.02 | 89.46 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg13_b32x8_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg13_batch256_imagenet_20210208-4d1d6080.pth) | [log](https://download.openmmlab.com/mmclassification/v0/vgg/vgg13_batch256_imagenet_20210208-4d1d6080.log.json) |
|
||||
| VGG-16 | 138.36 | 15.5 | 71.62 | 90.49 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg16_b32x8_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg16_batch256_imagenet_20210208-db26f1a5.pth) | [log](https://download.openmmlab.com/mmclassification/v0/vgg/vgg16_batch256_imagenet_20210208-db26f1a5.log.json) |
|
||||
| VGG-19 | 143.67 | 19.67 | 72.41 | 90.80 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg19_b32x8_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg19_bn_batch256_imagenet_20210208-da620c4f.pth) | [log](https://download.openmmlab.com/mmclassification/v0/vgg/vgg19_bn_batch256_imagenet_20210208-da620c4f.log.json)|
|
||||
| VGG-11-BN | 132.87 | 7.64 | 70.75 | 90.12 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg11bn_b32x8_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg11_bn_batch256_imagenet_20210207-f244902c.pth) | [log](https://download.openmmlab.com/mmclassification/v0/vgg/vgg11_bn_batch256_imagenet_20210207-f244902c.log.json) |
|
||||
| VGG-13-BN | 133.05 | 11.36 | 72.15 | 90.71 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg13bn_b32x8_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg13_bn_batch256_imagenet_20210207-1a8b7864.pth) | [log](https://download.openmmlab.com/mmclassification/v0/vgg/vgg13_bn_batch256_imagenet_20210207-1a8b7864.log.json) |
|
||||
| VGG-16-BN | 138.37 | 15.53 | 73.72 | 91.68 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg16_b32x8_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg16_bn_batch256_imagenet_20210208-7e55cd29.pth) | [log](https://download.openmmlab.com/mmclassification/v0/vgg/vgg16_bn_batch256_imagenet_20210208-7e55cd29.log.json) |
|
||||
| VGG-19-BN | 143.68 | 19.7 | 74.70 | 92.24 | [config](https://github.com/open-mmlab/mmclassification/blob/master/configs/vgg/vgg19bn_b32x8_imagenet.py) | [model](https://download.openmmlab.com/mmclassification/v0/vgg/vgg19_bn_batch256_imagenet_20210208-da620c4f.pth) | [log](https://download.openmmlab.com/mmclassification/v0/vgg/vgg19_bn_batch256_imagenet_20210208-da620c4f.log.json)|
|
||||
|
|
|
@ -0,0 +1,120 @@
|
|||
Collections:
|
||||
- Name: VGG
|
||||
Metadata:
|
||||
Training Data: ImageNet
|
||||
Training Techniques:
|
||||
- SGD with Momentum
|
||||
- Weight Decay
|
||||
Training Resources: 8x Xp GPUs
|
||||
Epochs: 100
|
||||
Batch Size: 256
|
||||
Architecture:
|
||||
- VGG
|
||||
Paper: https://arxiv.org/abs/1409.1556
|
||||
README: configs/vgg/README.md
|
||||
|
||||
Models:
|
||||
- Config: configs/vgg/vgg11_b32x8_imagenet.py
|
||||
In Collection: VGG
|
||||
Metadata:
|
||||
FLOPs: 7630000000
|
||||
Parameters: 132860000
|
||||
Name: vgg11_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 68.75
|
||||
Top 5 Accuracy: 88.87
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/vgg/vgg11_batch256_imagenet_20210208-4271cd6c.pth
|
||||
- Config: configs/vgg/vgg13_b32x8_imagenet.py
|
||||
In Collection: VGG
|
||||
Metadata:
|
||||
FLOPs: 11340000000
|
||||
Parameters: 133050000
|
||||
Name: vgg13_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 70.02
|
||||
Top 5 Accuracy: 89.46
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/vgg/vgg13_batch256_imagenet_20210208-4d1d6080.pth
|
||||
- Config: configs/vgg/vgg16_b32x8_imagenet.py
|
||||
In Collection: VGG
|
||||
Metadata:
|
||||
FLOPs: 15500000000
|
||||
Parameters: 138360000
|
||||
Name: vgg16_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 71.62
|
||||
Top 5 Accuracy: 90.49
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/vgg/vgg16_batch256_imagenet_20210208-db26f1a5.pth
|
||||
- Config: configs/vgg/vgg19_b32x8_imagenet.py
|
||||
In Collection: VGG
|
||||
Metadata:
|
||||
FLOPs: 19670000000
|
||||
Parameters: 143670000
|
||||
Name: vgg19_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 72.41
|
||||
Top 5 Accuracy: 90.8
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/vgg/vgg19_bn_batch256_imagenet_20210208-da620c4f.pth
|
||||
- Config: configs/vgg/vgg11bn_b32x8_imagenet.py
|
||||
In Collection: VGG
|
||||
Metadata:
|
||||
FLOPs: 7640000000
|
||||
Parameters: 132870000
|
||||
Name: vgg11bn_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 70.75
|
||||
Top 5 Accuracy: 90.12
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/vgg/vgg11_bn_batch256_imagenet_20210207-f244902c.pth
|
||||
- Config: configs/vgg/vgg13bn_b32x8_imagenet.py
|
||||
In Collection: VGG
|
||||
Metadata:
|
||||
FLOPs: 11360000000
|
||||
Parameters: 133050000
|
||||
Name: vgg13bn_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 72.15
|
||||
Top 5 Accuracy: 90.71
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/vgg/vgg13_bn_batch256_imagenet_20210207-1a8b7864.pth
|
||||
- Config: configs/vgg/vgg16_b32x8_imagenet.py
|
||||
In Collection: VGG
|
||||
Metadata:
|
||||
FLOPs: 15530000000
|
||||
Parameters: 138370000
|
||||
Name: vgg16_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 73.72
|
||||
Top 5 Accuracy: 91.68
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/vgg/vgg16_bn_batch256_imagenet_20210208-7e55cd29.pth
|
||||
- Config: configs/vgg/vgg19bn_b32x8_imagenet.py
|
||||
In Collection: VGG
|
||||
Metadata:
|
||||
FLOPs: 19700000000
|
||||
Parameters: 143680000
|
||||
Name: vgg19bn_b32x8_imagenet
|
||||
Results:
|
||||
- Dataset: ImageNet
|
||||
Metrics:
|
||||
Top 1 Accuracy: 74.7
|
||||
Top 5 Accuracy: 92.24
|
||||
Task: Image Classification
|
||||
Weights: https://download.openmmlab.com/mmclassification/v0/vgg/vgg19_bn_batch256_imagenet_20210208-da620c4f.pth
|
|
@ -0,0 +1,10 @@
|
|||
Import:
|
||||
- configs/fp16/metafile.yml
|
||||
- configs/mobilenet_v2/metafile.yml
|
||||
- configs/resnet/metafile.yml
|
||||
- configs/resnext/metafile.yml
|
||||
- configs/seresnet/metafile.yml
|
||||
- configs/seresnext/metafile.yml
|
||||
- configs/shufflenet_v1/metafile.yml
|
||||
- configs/shufflenet_v2/metafile.yml
|
||||
- configs/vgg/metafile.yml
|
Loading…
Reference in New Issue