File size: 1,306 Bytes
747451d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # /*---------------------------------------------------------------------------------------------
# * Copyright (c) 2025 STMicroelectronics.
# * All rights reserved.
# *
# * This software is licensed under terms that can be found in the LICENSE file in
# * the root directory of this software component.
# * If no LICENSE file comes with this software, it is provided AS-IS.
# *--------------------------------------------------------------------------------------------*/
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
# Copyright (c) Megvii Inc. All rights reserved.
from .detection.backbones.darknet import CSPDarknet, Darknet
from .losses.losses import IOUloss
from .detection.necks.yolo_fpn import YOLOFPN
from .detection.heads.yolo_head import YOLODHead
from .detection.necks.yolo_pafpn import YOLOPAFPN
from .detection.necks.stresnet_pafpn import STResNetYOLOPAFPN
from .detection.necks.yolov11_pafpn import YOLOv11PAFPN
from .yolod import YOLOD
from .detection.detectors.yolod_nano import YOLODNano
from .detection.detectors.styolo_nano import STYOLONano
from .detection.detectors.styolo_pico import STYOLOPico
from .detection.detectors.styolo_tiny import STYOLOTiny
from .detection.detectors.styolo_milli import STYOLOMilli
from .detection.detectors.styolo_micro import STYOLOMicro
|