File size: 200 Bytes
29f689c
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import copy

from .base_detector import BaseDetector

__all__ = ['build_model']


def build_model(config):
    config = copy.deepcopy(config)
    det_model = BaseDetector(config)
    return det_model