lyuwenyu / RT-DETR

[CVPR 2024] Official RT-DETR (RTDETR paddle pytorch), Real-Time DEtection TRansformer, DETRs Beat YOLOs on Real-time Object Detection. 🔥 🔥 🔥
Apache License 2.0
2.61k stars 303 forks source link

ValueError: Missing MyCocoDetection in inspect stage. #402

Closed SongYxing closed 3 months ago

SongYxing commented 3 months ago

作者大大您好,感谢您优秀的开源工作。

我这里是自己继承torchvision.coco重写了一个检测类,这里我就叫MyCocoDetection。

之前在v1的版本,直接写完注册调用就行了。

现在v2的版本,注册完以后还是会报这个bug,GLOBAL_CONFIG并没有注册到它,从而报这个错。

请问该如何调用自己写的类

lyuwenyu commented 3 months ago

register使用上有下面的差异;

@register class MyCocoDetection(): ...


- v2
```python

@register()
class MyCocoDetection(): ...
SongYxing commented 3 months ago

我的天啊我这猪脑