model_list.py 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. "PP-HGNet_tiny",
  43. "PP-HGNet_small",
  44. "PP-HGNet_base",
  45. "PP-HGNetV2-B0",
  46. "PP-HGNetV2-B1",
  47. "PP-HGNetV2-B2",
  48. "PP-HGNetV2-B3",
  49. "PP-HGNetV2-B4",
  50. "PP-HGNetV2-B5",
  51. "PP-HGNetV2-B6",
  52. "PP-LCNet_x0_25",
  53. "PP-LCNet_x0_35",
  54. "PP-LCNet_x0_5",
  55. "PP-LCNet_x0_75",
  56. "PP-LCNet_x1_0",
  57. "PP-LCNet_x1_5",
  58. "PP-LCNet_x2_0",
  59. "PP-LCNet_x2_5",
  60. "PP-LCNetV2_small",
  61. "PP-LCNetV2_base",
  62. "PP-LCNetV2_large",
  63. "ResNet101",
  64. "ResNet152",
  65. "ResNet18",
  66. "ResNet34",
  67. "ResNet50",
  68. "ResNet200_vd",
  69. "ResNet101_vd",
  70. "ResNet152_vd",
  71. "ResNet18_vd",
  72. "ResNet34_vd",
  73. "ResNet50_vd",
  74. "SwinTransformer_tiny_patch4_window7_224",
  75. "SwinTransformer_small_patch4_window7_224",
  76. "SwinTransformer_base_patch4_window7_224",
  77. "SwinTransformer_base_patch4_window12_384",
  78. "SwinTransformer_large_patch4_window7_224",
  79. "SwinTransformer_large_patch4_window12_384",
  80. ]
  81. ML_MODELS = [
  82. "ResNet50_ML",
  83. "PP-LCNet_x1_0_ML",
  84. "PP-HGNetV2-B0_ML",
  85. "PP-HGNetV2-B4_ML",
  86. "PP-HGNetV2-B6_ML",
  87. "CLIP_vit_base_patch16_448_ML",
  88. ]