PaddleClas/hubconf.py

14 lines
199 B
Python
Raw Normal View History

2021-03-24 10:40:57 +08:00
from ppcls.modeling.architectures.resnet import ResNet18
def ResNet18Test(**args):
2021-03-24 10:58:49 +08:00
'''lyuwenyu/PaddleClas/hub_L
ResNet18Entry test
2021-03-24 10:40:57 +08:00
'''
model = ResNet18(**args)
return model