Ejemplo n.º 1
0
def build_dataset(cfg):
    """Build detector."""
    return build(cfg, DATASETS)
Ejemplo n.º 2
0
def build_pipeline(cfg):
    """Build detector."""
    return build(cfg, PIPELINES)
Ejemplo n.º 3
0
def build_loss(cfg):
    """Build detector."""
    return build(cfg, LOSSES)
Ejemplo n.º 4
0
def build_parnet(cfg, train_cfg=None, test_cfg=None):
    """Build detector."""
    return build(cfg, PARNETS)
Ejemplo n.º 5
0
def build_classifier(cfg):
    """Build detector."""
    return build(cfg, CLASSIFIERS)
Ejemplo n.º 6
0
def build_bockbone(cfg):
    """Build detector."""
    return build(cfg, BOCKBONES)