We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e99f8b commit 194418dCopy full SHA for 194418d
1 file changed
src/hyperactive/experiment/integrations/__init__.py
@@ -2,6 +2,9 @@
2
# copyright: hyperactive developers, MIT License (see LICENSE file)
3
4
from hyperactive.experiment.integrations.lightgbm_experiment import LightGBMExperiment
5
+from hyperactive.experiment.integrations.skforecast_forecasting import (
6
+ SkforecastExperiment,
7
+)
8
from hyperactive.experiment.integrations.sklearn_cv import SklearnCvExperiment
9
from hyperactive.experiment.integrations.skpro_probareg import (
10
SkproProbaRegExperiment,
@@ -17,10 +20,11 @@
17
20
)
18
21
19
22
__all__ = [
23
+ "LightGBMExperiment",
24
+ "SkforecastExperiment",
25
"SklearnCvExperiment",
26
"SkproProbaRegExperiment",
27
"SktimeClassificationExperiment",
28
"SktimeForecastingExperiment",
29
"TorchExperiment",
- "LightGBMExperiment",
30
]
0 commit comments