Skip to content

Commit 194418d

Browse files
committed
add LightGBMExperiment + rearange
1 parent 8e99f8b commit 194418d

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/hyperactive/experiment/integrations/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# copyright: hyperactive developers, MIT License (see LICENSE file)
33

44
from hyperactive.experiment.integrations.lightgbm_experiment import LightGBMExperiment
5+
from hyperactive.experiment.integrations.skforecast_forecasting import (
6+
SkforecastExperiment,
7+
)
58
from hyperactive.experiment.integrations.sklearn_cv import SklearnCvExperiment
69
from hyperactive.experiment.integrations.skpro_probareg import (
710
SkproProbaRegExperiment,
@@ -17,10 +20,11 @@
1720
)
1821

1922
__all__ = [
23+
"LightGBMExperiment",
24+
"SkforecastExperiment",
2025
"SklearnCvExperiment",
2126
"SkproProbaRegExperiment",
2227
"SktimeClassificationExperiment",
2328
"SktimeForecastingExperiment",
2429
"TorchExperiment",
25-
"LightGBMExperiment",
2630
]

0 commit comments

Comments
 (0)