Total Complexity | 0 |
Total Lines | 11 |
Duplicated Lines | 0 % |
Changes | 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 |