hyperactive.integrations   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 11
rs 10
c 0
b 0
f 0
1
"""Integrations package for third-party library compatibility.
2
3
copyright: hyperactive developers, MIT License (see LICENSE file)
4
"""
5
6
from hyperactive.integrations.sklearn import HyperactiveSearchCV, OptCV
7
8
__all__ = [
9
    "HyperactiveSearchCV",
10
    "OptCV",
11
]
12