hyperactive.integrations.sklearn   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 6
dl 0
loc 12
rs 10
c 0
b 0
f 0
1
"""Scikit-learn integration package for Hyperactive.
2
3
copyright: hyperactive developers, MIT License (see LICENSE file)
4
"""
5
6
from .hyperactive_search_cv import HyperactiveSearchCV
7
from .opt_cv import OptCV
8
9
__all__ = [
10
    "HyperactiveSearchCV",
11
    "OptCV",
12
]
13