File size: 399 Bytes
d840583
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""One sub-package per classifier, plus the registry that collects them."""

from models import logistic_regression, naive_bayes, random_forest, svm

__all__ = [
    "build_models_dict",
    "logistic_regression",
    "naive_bayes",
    "random_forest",
    "svm",
]


def build_models_dict():
    from models.registry import build_models_dict as _build_models_dict

    return _build_models_dict()