| 123456789101112131415161718192021222324 |
- # !/usr/bin/env python3
- # -*- coding: UTF-8 -*-
- ################################################################################
- #
- # Copyright (c) 2024 Baidu.com, Inc. All Rights Reserved
- #
- ################################################################################
- """
- Author: PaddlePaddle Authors
- """
- 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',
- ]
|