| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- # copyright (c) 2024 PaddlePaddle Authors. All Rights Reserve.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- MODELS = [
- "CLIP_vit_base_patch16_224",
- "CLIP_vit_large_patch14_224",
- "ConvNeXt_tiny",
- "ConvNeXt_small",
- "ConvNeXt_base_224",
- "ConvNeXt_base_384",
- "ConvNeXt_large_224",
- "ConvNeXt_large_384",
- "MobileNetV1_x0_25",
- "MobileNetV1_x0_5",
- "MobileNetV1_x0_75",
- "MobileNetV1_x1_0",
- "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",
- "MobileNetV4_conv_small",
- "MobileNetV4_conv_medium",
- "MobileNetV4_conv_large",
- "MobileNetV4_hybrid_medium",
- "MobileNetV4_hybrid_large",
- "PP-HGNet_tiny",
- "PP-HGNet_small",
- "PP-HGNet_base",
- "PP-HGNetV2-B0",
- "PP-HGNetV2-B1",
- "PP-HGNetV2-B2",
- "PP-HGNetV2-B3",
- "PP-HGNetV2-B4",
- "PP-HGNetV2-B5",
- "PP-HGNetV2-B6",
- "PP-LCNet_x0_25",
- "PP-LCNet_x0_25_textline_ori",
- "PP-LCNet_x0_35",
- "PP-LCNet_x0_5",
- "PP-LCNet_x0_75",
- "PP-LCNet_x1_0",
- "PP-LCNet_x1_0_doc_ori",
- "PP-LCNet_x1_5",
- "PP-LCNet_x2_0",
- "PP-LCNet_x2_5",
- "PP-LCNetV2_small",
- "PP-LCNetV2_base",
- "PP-LCNetV2_large",
- "ResNet101",
- "ResNet152",
- "ResNet18",
- "ResNet34",
- "ResNet50",
- "ResNet200_vd",
- "ResNet101_vd",
- "ResNet152_vd",
- "ResNet18_vd",
- "ResNet34_vd",
- "ResNet50_vd",
- "SwinTransformer_tiny_patch4_window7_224",
- "SwinTransformer_small_patch4_window7_224",
- "SwinTransformer_base_patch4_window7_224",
- "SwinTransformer_base_patch4_window12_384",
- "SwinTransformer_large_patch4_window7_224",
- "SwinTransformer_large_patch4_window12_384",
- "StarNet-S1",
- "StarNet-S2",
- "StarNet-S3",
- "StarNet-S4",
- "FasterNet-L",
- "FasterNet-M",
- "FasterNet-S",
- "FasterNet-T0",
- "FasterNet-T1",
- "FasterNet-T2",
- ]
|