| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- # !/usr/bin/env python3
- # -*- coding: UTF-8 -*-
- ################################################################################
- #
- # Copyright (c) 2024 Baidu.com, Inc. All Rights Reserved
- #
- ################################################################################
- """
- Author: PaddlePaddle Authors
- """
- MODELS = [
- 'CLIP_vit_base_patch16_224',
- 'CLIP_vit_large_patch14_224',
- 'ConvNeXt_tiny',
- 'MobileNetV2_x0_25',
- 'MobileNetV2_x0_5',
- 'MobileNetV2_x1_0',
- 'MobileNetV2_x1_5',
- 'MobileNetV2_x2_0',
- 'MobileNetV3_large_x0_35',
- 'MobileNetV3_large_x0_5',
- 'MobileNetV3_large_x0_75',
- 'MobileNetV3_large_x1_0',
- 'MobileNetV3_large_x1_25',
- 'MobileNetV3_small_x0_35',
- 'MobileNetV3_small_x0_5',
- 'MobileNetV3_small_x0_75',
- 'MobileNetV3_small_x1_0',
- 'MobileNetV3_small_x1_25',
- 'PP-HGNet_small',
- 'PP-HGNetV2-B0',
- 'PP-HGNetV2-B4',
- 'PP-HGNetV2-B6',
- 'PP-LCNet_x0_25',
- 'PP-LCNet_x0_35',
- 'PP-LCNet_x0_5',
- 'PP-LCNet_x0_75',
- 'PP-LCNet_x1_0',
- 'PP-LCNet_x1_5',
- 'PP-LCNet_x2_0',
- 'PP-LCNet_x2_5',
- 'ResNet101',
- 'ResNet152',
- 'ResNet18',
- 'ResNet34',
- 'ResNet50',
- 'SwinTransformer_base_patch4_window7_224',
- ]
|