model_list.py 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # Copyright (c) 2024 PaddlePaddle Authors. All Rights Reserved.
  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_0_textline_ori",
  65. "PP-LCNet_x1_5",
  66. "PP-LCNet_x2_0",
  67. "PP-LCNet_x2_5",
  68. "PP-LCNetV2_small",
  69. "PP-LCNetV2_base",
  70. "PP-LCNetV2_large",
  71. "ResNet101",
  72. "ResNet152",
  73. "ResNet18",
  74. "ResNet34",
  75. "ResNet50",
  76. "ResNet200_vd",
  77. "ResNet101_vd",
  78. "ResNet152_vd",
  79. "ResNet18_vd",
  80. "ResNet34_vd",
  81. "ResNet50_vd",
  82. "SwinTransformer_tiny_patch4_window7_224",
  83. "SwinTransformer_small_patch4_window7_224",
  84. "SwinTransformer_base_patch4_window7_224",
  85. "SwinTransformer_base_patch4_window12_384",
  86. "SwinTransformer_large_patch4_window7_224",
  87. "SwinTransformer_large_patch4_window12_384",
  88. "StarNet-S1",
  89. "StarNet-S2",
  90. "StarNet-S3",
  91. "StarNet-S4",
  92. "FasterNet-L",
  93. "FasterNet-M",
  94. "FasterNet-S",
  95. "FasterNet-T0",
  96. "FasterNet-T1",
  97. "FasterNet-T2",
  98. "PP-LCNet_x1_0_table_cls",
  99. ]