model_list.py 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. "PicoDet-L",
  16. "PicoDet-S",
  17. "PP-YOLOE_plus-L",
  18. "PP-YOLOE_plus-M",
  19. "PP-YOLOE_plus-S",
  20. "PP-YOLOE_plus-X",
  21. "RT-DETR-H",
  22. "RT-DETR-L",
  23. "RT-DETR-R18",
  24. "RT-DETR-R50",
  25. "RT-DETR-X",
  26. "PicoDet_layout_1x",
  27. "PicoDet_layout_1x_table",
  28. "PicoDet-S_layout_3cls",
  29. "PicoDet-S_layout_17cls",
  30. "PicoDet-L_layout_3cls",
  31. "PicoDet-L_layout_17cls",
  32. "RT-DETR-H_layout_3cls",
  33. "RT-DETR-H_layout_17cls",
  34. "YOLOv3-DarkNet53",
  35. "YOLOv3-MobileNetV3",
  36. "YOLOv3-ResNet50_vd_DCN",
  37. "YOLOX-L",
  38. "YOLOX-M",
  39. "YOLOX-N",
  40. "YOLOX-S",
  41. "YOLOX-T",
  42. "YOLOX-X",
  43. "FasterRCNN-ResNet34-FPN",
  44. "FasterRCNN-ResNet50",
  45. "FasterRCNN-ResNet50-FPN",
  46. "FasterRCNN-ResNet50-vd-FPN",
  47. "FasterRCNN-ResNet50-vd-SSLDv2-FPN",
  48. "FasterRCNN-ResNet101",
  49. "FasterRCNN-ResNet101-FPN",
  50. "FasterRCNN-ResNeXt101-vd-FPN",
  51. "FasterRCNN-Swin-Tiny-FPN",
  52. "Cascade-FasterRCNN-ResNet50-FPN",
  53. "Cascade-FasterRCNN-ResNet50-vd-SSLDv2-FPN",
  54. "PicoDet-M",
  55. "PicoDet-XS",
  56. "FCOS-ResNet50",
  57. "DETR-R50",
  58. "PP-ShiTuV2_det",
  59. "PP-YOLOE-L_human",
  60. "PP-YOLOE-S_human",
  61. "PP-YOLOE-L_vehicle",
  62. "PP-YOLOE-S_vehicle",
  63. "PP-YOLOE_plus_SOD-L",
  64. "PP-YOLOE_plus_SOD-S",
  65. "PP-YOLOE_plus_SOD-largesize-L",
  66. "CenterNet-DLA-34",
  67. "CenterNet-ResNet50",
  68. "PicoDet_LCNet_x2_5_face",
  69. "BlazeFace",
  70. "BlazeFace-FPN-SSH",
  71. "PP-YOLOE_plus-S_face",
  72. "PP-YOLOE-R-L",
  73. "Co-Deformable-DETR-R50",
  74. "Co-Deformable-DETR-Swin-T",
  75. "Co-DINO-R50",
  76. "Co-DINO-Swin-L",
  77. "RT-DETR-L_wired_table_cell_det",
  78. "RT-DETR-L_wireless_table_cell_det",
  79. "PP-DocLayout-L",
  80. "PP-DocLayout-M",
  81. "PP-DocLayout-S",
  82. ]