CoolFace
Datasetpublic

monetjoe/cv_backbones

Dataset Card for "monetjoe/cv_backbones" This repository consolidates the collection of backbone networks for pre-trained computer vision models available on the PyTorch official website. It mainly includes various Convolutional Neural Networks (CNNs) and Vision Transformer models pre-trained on the ImageNet1K dataset. The entire collection is divided into two subsets, V1 and V2, encompassing multiple classic and advanced versions of visual models. These pre-trained backbone… See the full description on the dataset page: https://huggingface.co/datasets/monetjoe/cv_backbones.

sourceHugging Facemitupdated 2mo agoView on Hugging Face
27likes122downloads
Dataset Card

Dataset Card for "monetjoe/cv_backbones"

This repository consolidates the collection of backbone networks for pre-trained computer vision models available on the PyTorch official website. It mainly includes various Convolutional Neural Networks (CNNs) and Vision Transformer models pre-trained on the ImageNet1K dataset. The entire collection is divided into two subsets, V1 and V2, encompassing multiple classic and advanced versions of visual models. These pre-trained backbone networks provide users with a robust foundation for transfer learning in tasks such as image recognition, object detection, and image segmentation. Simultaneously, it offers a convenient choice for researchers and practitioners to flexibly apply these pre-trained models in different scenarios.

Data structure

vertypeinput_sizeurl
backbone namebackbone typeinput image sizeurl of pretrained model .pth file

Usage

ImageNet V1

python
from datasets import load_dataset

backbones = load_dataset(
    "monetjoe/cv_backbones",
    name="default",
    split="train",
    cache_dir="./__pycache__",
)
for weights in backbones:
    print(weights)

ImageNet V2

python
from datasets import load_dataset

backbones = load_dataset(
    "monetjoe/cv_backbones",
    name="default",
    split="test",
    cache_dir="./__pycache__",
)
for weights in backbones:
    print(weights)

Maintenance

bash
git clone git@hf.co:datasets/monetjoe/cv_backbones
cd cv_backbones

Update tool

<https://huggingface.co/spaces/monetjoe/cv_backbones>

Param counts of different backbones

IMAGENET1K_V1

BackboneParams(M)
SqueezeNet1_01.2
SqueezeNet1_11.2
ShuffleNetV2X0_51.4
MNASNet0_52.2
ShuffleNetV2X1_02.3
MobileNetV3Small2.5
MNASNet0_753.2
MobileNet_V23.5
ShuffleNetV2X1_53.5
RegNetY400MF4.3
MNASNet1_04.4
EfficientNet_B05.3
MobileNetV3Large5.5
RegNetX400MF5.5
MNASNet1_36.3
RegNetY800MF6.4
GoogLeNet6.6
RegNetX800MF7.3
ShuffleNetV2X2_07.4
EfficientNet_B17.8
DenseNet1218
EfficientNet_B29.1
RegNetX1_6GF9.2
RegNetY1_6GF11.2
ResNet1811.7
EfficientNet_B312.2
DenseNet16914.1
RegNetX3_2GF15.3
EfficientNet_B419.3
RegNetY3_2GF19.4
DenseNet20120
EfficientNetV2S21.5
ResNet3421.8
ResNeXt50_32X4D25
ResNet5025.6
Inception_V327.2
Swin_T28.3
SwinV2T28.4
ConvNeXt_Tiny28.6
DenseNet16128.7
EfficientNet_B530.4
MaxVit_T30.9
RegNetY8GF39.4
RegNetX8GF39.6
EfficientNet_B643
ResNet10144.5
Swin_S49.6
SwinV2S49.7
ConvNeXt_Small50.2
EfficientNetV2M54.1
RegNetX16GF54.3
ResNet15260.2
AlexNet61.1
EfficientNet_B766.3
WideResNet50268.9
ResNeXt101_64X4D83.5
RegNetY16GF83.6
ViTB1686.6
Swin_B87.8
SwinV2B87.9
ViTB3288.2
ConvNeXt_Base88.6
ResNeXt101_32X8D88.8
RegNetX32GF107.8
EfficientNetV2L118.5
WideResNet1012126.9
VGG11_BN132.9
VGG11132.9
VGG13133
VGG13_BN133.1
VGG16_BN138.4
VGG16138.4
VGG19_BN143.7
VGG19143.7
RegNetY32GF145
ConvNeXt_Large197.8
ViTL16304.3
ViTL32306.5

IMAGENET1K_V2

BackboneParams(M)
MobileNet_V23.5
RegNetY400MF4.3
MobileNetV3Large5.5
RegNetX400MF5.5
RegNetY800MF6.4
RegNetX800MF7.3
EfficientNet_B17.8
RegNetX1_6GF9.2
RegNetY1_6GF11.2
RegNetX3_2GF15.3
RegNetY3_2GF19.4
ResNeXt50_32X4D25
ResNet5025.6
RegNetY8GF39.4
RegNetX8GF39.6
ResNet10144.5
RegNetX16GF54.3
ResNet15260.2
WideResNet50268.9
RegNetY16GF83.6
ResNeXt101_32X8D88.8
RegNetX32GF107.8
WideResNet1012126.9
RegNetY32GF145

Mirror

<https://www.modelscope.cn/datasets/monetjoe/cv_backbones>

References

  • <https://pytorch.org/vision/main/_modules>
  • <https://pytorch.org/vision/main/models.html>