-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy path__init__.py
More file actions
28 lines (26 loc) · 833 Bytes
/
__init__.py
File metadata and controls
28 lines (26 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
"""Integrations with packages for tuning."""
# copyright: hyperactive developers, MIT License (see LICENSE file)
from hyperactive.experiment.integrations.sklearn_cv import (
SklearnCvExperiment,
XGBoostCvExperiment,
)
from hyperactive.experiment.integrations.skpro_probareg import (
SkproProbaRegExperiment,
)
from hyperactive.experiment.integrations.sktime_classification import (
SktimeClassificationExperiment,
)
from hyperactive.experiment.integrations.sktime_forecasting import (
SktimeForecastingExperiment,
)
from hyperactive.experiment.integrations.torch_lightning_experiment import (
TorchExperiment,
)
__all__ = [
"SklearnCvExperiment",
"SkproProbaRegExperiment",
"SktimeClassificationExperiment",
"SktimeForecastingExperiment",
"TorchExperiment",
"XGBoostCvExperiment",
]