Update yolo_detector.py ()

将 YOLOX -> YOLO
pull/442/head
Jing Tang 2023-01-06 19:20:24 +08:00 committed by GitHub
parent 07afc3ee78
commit 7d07e1a780
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
mmyolo/models/detectors

View File

@ -17,9 +17,9 @@ class YOLODetector(SingleStageDetector):
neck (:obj:`ConfigDict` or dict): The neck config.
bbox_head (:obj:`ConfigDict` or dict): The bbox head config.
train_cfg (:obj:`ConfigDict` or dict, optional): The training config
of YOLOX. Defaults to None.
of YOLO. Defaults to None.
test_cfg (:obj:`ConfigDict` or dict, optional): The testing config
of YOLOX. Defaults to None.
of YOLO. Defaults to None.
data_preprocessor (:obj:`ConfigDict` or dict, optional): Config of
:class:`DetDataPreprocessor` to process the input data.
Defaults to None.