Spaces:
Running
Running
File size: 206 Bytes
29f689c |
1 2 3 4 5 6 7 8 9 10 11 12 |
import copy
from .base_recognizer import BaseRecognizer
__all__ = ['build_model']
def build_model(config):
config = copy.deepcopy(config)
rec_model = BaseRecognizer(config)
return rec_model
|