mirror of
https://github.com/modelscope/modelscope.git
synced 2025-12-23 11:39:26 +01:00
9 lines
248 B
Python
9 lines
248 B
Python
|
|
# Copyright (c) Alibaba, Inc. and its affiliates.
|
||
|
|
from modelscope.models.base import Model
|
||
|
|
from modelscope.models.builder import MODELS
|
||
|
|
|
||
|
|
|
||
|
|
@MODELS.register_module(group_key='dummy-group', module_name='dummy-model')
|
||
|
|
class DummyModel(Model):
|
||
|
|
pass
|