| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- # Copyright (c) 2024 PaddlePaddle Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- MODELS = [
- "PicoDet-L",
- "PicoDet-S",
- "PP-YOLOE_plus-L",
- "PP-YOLOE_plus-M",
- "PP-YOLOE_plus-S",
- "PP-YOLOE_plus-X",
- "RT-DETR-H",
- "RT-DETR-L",
- "RT-DETR-R18",
- "RT-DETR-R50",
- "RT-DETR-X",
- "PicoDet_layout_1x",
- "PicoDet_layout_1x_table",
- "PicoDet-S_layout_3cls",
- "PicoDet-S_layout_17cls",
- "PicoDet-L_layout_3cls",
- "PicoDet-L_layout_17cls",
- "RT-DETR-H_layout_3cls",
- "RT-DETR-H_layout_17cls",
- "YOLOv3-DarkNet53",
- "YOLOv3-MobileNetV3",
- "YOLOv3-ResNet50_vd_DCN",
- "YOLOX-L",
- "YOLOX-M",
- "YOLOX-N",
- "YOLOX-S",
- "YOLOX-T",
- "YOLOX-X",
- "FasterRCNN-ResNet34-FPN",
- "FasterRCNN-ResNet50",
- "FasterRCNN-ResNet50-FPN",
- "FasterRCNN-ResNet50-vd-FPN",
- "FasterRCNN-ResNet50-vd-SSLDv2-FPN",
- "FasterRCNN-ResNet101",
- "FasterRCNN-ResNet101-FPN",
- "FasterRCNN-ResNeXt101-vd-FPN",
- "FasterRCNN-Swin-Tiny-FPN",
- "Cascade-FasterRCNN-ResNet50-FPN",
- "Cascade-FasterRCNN-ResNet50-vd-SSLDv2-FPN",
- "PicoDet-M",
- "PicoDet-XS",
- "FCOS-ResNet50",
- "DETR-R50",
- "PP-ShiTuV2_det",
- "PP-YOLOE-L_human",
- "PP-YOLOE-S_human",
- "PP-YOLOE-L_vehicle",
- "PP-YOLOE-S_vehicle",
- "PP-YOLOE_plus_SOD-L",
- "PP-YOLOE_plus_SOD-S",
- "PP-YOLOE_plus_SOD-largesize-L",
- "CenterNet-DLA-34",
- "CenterNet-ResNet50",
- "PicoDet_LCNet_x2_5_face",
- "BlazeFace",
- "BlazeFace-FPN-SSH",
- "PP-YOLOE_plus-S_face",
- "PP-YOLOE-R-L",
- "Co-Deformable-DETR-R50",
- "Co-Deformable-DETR-Swin-T",
- "Co-DINO-R50",
- "Co-DINO-Swin-L",
- "RT-DETR-L_wired_table_cell_det",
- "RT-DETR-L_wireless_table_cell_det",
- "PP-DocLayout-L",
- "PP-DocLayout-M",
- "PP-DocLayout-S",
- ]
|