model_list.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. 'MobileNetV2_x0_25',
  19. 'MobileNetV2_x0_5',
  20. 'MobileNetV2_x1_0',
  21. 'MobileNetV2_x1_5',
  22. 'MobileNetV2_x2_0',
  23. 'MobileNetV3_large_x0_35',
  24. 'MobileNetV3_large_x0_5',
  25. 'MobileNetV3_large_x0_75',
  26. 'MobileNetV3_large_x1_0',
  27. 'MobileNetV3_large_x1_25',
  28. 'MobileNetV3_small_x0_35',
  29. 'MobileNetV3_small_x0_5',
  30. 'MobileNetV3_small_x0_75',
  31. 'MobileNetV3_small_x1_0',
  32. 'MobileNetV3_small_x1_25',
  33. 'PP-HGNet_small',
  34. 'PP-HGNetV2-B0',
  35. 'PP-HGNetV2-B4',
  36. 'PP-HGNetV2-B6',
  37. 'PP-LCNet_x0_25',
  38. 'PP-LCNet_x0_35',
  39. 'PP-LCNet_x0_5',
  40. 'PP-LCNet_x0_75',
  41. 'PP-LCNet_x1_0',
  42. 'PP-LCNet_x1_5',
  43. 'PP-LCNet_x2_0',
  44. 'PP-LCNet_x2_5',
  45. 'ResNet101',
  46. 'ResNet152',
  47. 'ResNet18',
  48. 'ResNet34',
  49. 'ResNet50',
  50. 'SwinTransformer_base_patch4_window7_224',
  51. ]