You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

deformable_detr.py 256 B

2 years ago
12345678910
  1. # Copyright (c) OpenMMLab. All rights reserved.
  2. from ..builder import DETECTORS
  3. from .detr import DETR
  4. @DETECTORS.register_module()
  5. class DeformableDETR(DETR):
  6. def __init__(self, *args, **kwargs):
  7. super(DETR, self).__init__(*args, **kwargs)

No Description

Contributors (3)