faster_rcnn_r50_fpn_1x_coco.py 500 B

12345678910111213
  1. # Copyright (c) OpenMMLab. All rights reserved.
  2. # Please refer to https://mmengine.readthedocs.io/en/latest/advanced_tutorials/config.html#a-pure-python-style-configuration-file-beta for more details. # noqa
  3. # mmcv >= 2.0.1
  4. # mmengine >= 0.8.0
  5. from mmengine.config import read_base
  6. with read_base():
  7. from .._base_.datasets.coco_detection import *
  8. from .._base_.default_runtime import *
  9. from .._base_.models.faster_rcnn_r50_fpn import *
  10. from .._base_.schedules.schedule_1x import *