hyperactive.opt.gridsearch   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 3
dl 0
loc 7
rs 10
c 0
b 0
f 0
1
"""Grid search with sklearn style grid and backends."""
2
# copyright: hyperactive developers, MIT License (see LICENSE file)
3
4
from hyperactive.opt.gridsearch._sk import GridSearchSk
5
6
__all__ = ["GridSearchSk"]
7