Tong Gao 06a20fae71
[Community] Add 'Projects/' folder, and the first example project (#1524)
* [Community] Add the first example project

* amend

* update

* update readme
2022-11-16 16:49:05 +08:00

17 lines
395 B
Python

from mmdet.models.backbones import ResNet
from mmocr.registry import MODELS
@MODELS.register_module()
class DummyResNet(ResNet):
"""Implements a dummy ResNet wrapper for demonstration purpose.
Args:
**kwargs: All the arguments are passed to the parent class.
"""
def __init__(self, **kwargs) -> None:
print('Hello world!')
super().__init__(**kwargs)