Spaces:
Sleeping
Sleeping
from mmdet.models.backbones import ResNet | |
from mmocr.registry import MODELS | |
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) | |