model_list.py 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. # copyright (c) 2024 PaddlePaddle Authors. All Rights Reserve.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. MODELS = [
  15. "CLIP_vit_base_patch16_224",
  16. "CLIP_vit_large_patch14_224",
  17. "ConvNeXt_tiny",
  18. "ConvNeXt_small",
  19. "ConvNeXt_base_224",
  20. "ConvNeXt_base_384",
  21. "ConvNeXt_large_224",
  22. "ConvNeXt_large_384",
  23. "MobileNetV1_x0_25",
  24. "MobileNetV1_x0_5",
  25. "MobileNetV1_x0_75",
  26. "MobileNetV1_x1_0",
  27. "MobileNetV2_x0_25",
  28. "MobileNetV2_x0_5",
  29. "MobileNetV2_x1_0",
  30. "MobileNetV2_x1_5",
  31. "MobileNetV2_x2_0",
  32. "MobileNetV3_large_x0_35",
  33. "MobileNetV3_large_x0_5",
  34. "MobileNetV3_large_x0_75",
  35. "MobileNetV3_large_x1_0",
  36. "MobileNetV3_large_x1_25",
  37. "MobileNetV3_small_x0_35",
  38. "MobileNetV3_small_x0_5",
  39. "MobileNetV3_small_x0_75",
  40. "MobileNetV3_small_x1_0",
  41. "MobileNetV3_small_x1_25",
  42. "MobileNetV4_conv_small",
  43. "MobileNetV4_conv_medium",
  44. "MobileNetV4_conv_large",
  45. "MobileNetV4_hybrid_medium",
  46. "MobileNetV4_hybrid_large",
  47. "PP-HGNet_tiny",
  48. "PP-HGNet_small",
  49. "PP-HGNet_base",
  50. "PP-HGNetV2-B0",
  51. "PP-HGNetV2-B1",
  52. "PP-HGNetV2-B2",
  53. "PP-HGNetV2-B3",
  54. "PP-HGNetV2-B4",
  55. "PP-HGNetV2-B5",
  56. "PP-HGNetV2-B6",
  57. "PP-LCNet_x0_25",
  58. "PP-LCNet_x0_25_textline_ori",
  59. "PP-LCNet_x0_35",
  60. "PP-LCNet_x0_5",
  61. "PP-LCNet_x0_75",
  62. "PP-LCNet_x1_0",
  63. "PP-LCNet_x1_0_doc_ori",
  64. "PP-LCNet_x1_5",
  65. "PP-LCNet_x2_0",
  66. "PP-LCNet_x2_5",
  67. "PP-LCNetV2_small",
  68. "PP-LCNetV2_base",
  69. "PP-LCNetV2_large",
  70. "ResNet101",
  71. "ResNet152",
  72. "ResNet18",
  73. "ResNet34",
  74. "ResNet50",
  75. "ResNet200_vd",
  76. "ResNet101_vd",
  77. "ResNet152_vd",
  78. "ResNet18_vd",
  79. "ResNet34_vd",
  80. "ResNet50_vd",
  81. "SwinTransformer_tiny_patch4_window7_224",
  82. "SwinTransformer_small_patch4_window7_224",
  83. "SwinTransformer_base_patch4_window7_224",
  84. "SwinTransformer_base_patch4_window12_384",
  85. "SwinTransformer_large_patch4_window7_224",
  86. "SwinTransformer_large_patch4_window12_384",
  87. "StarNet-S1",
  88. "StarNet-S2",
  89. "StarNet-S3",
  90. "StarNet-S4",
  91. "FasterNet-L",
  92. "FasterNet-M",
  93. "FasterNet-S",
  94. "FasterNet-T0",
  95. "FasterNet-T1",
  96. "FasterNet-T2",
  97. ]