File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
"DummyRegressor" ,
6
6
]
7
7
8
+ from aeon .regression ._dummy import DummyRegressor
8
9
from aeon .regression .base import BaseRegressor
9
- from aeon .regression .dummy import DummyRegressor
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class DummyRegressor(BaseRegressor):
43
43
44
44
Examples
45
45
--------
46
- >>> from aeon.regression.dummy import DummyRegressor
46
+ >>> from aeon.regression._dummy import DummyRegressor
47
47
>>> from aeon.datasets import load_covid_3month
48
48
>>> X_train, y_train = load_covid_3month(split="train")
49
49
>>> X_test, y_test = load_covid_3month(split="test")
Original file line number Diff line number Diff line change 6
6
from sklearn .metrics import r2_score
7
7
8
8
from aeon .datasets import load_covid_3month
9
+ from aeon .regression ._dummy import DummyRegressor
9
10
from aeon .regression .base import BaseRegressor
10
- from aeon .regression .dummy import DummyRegressor
11
11
from aeon .testing .testing_data import (
12
12
EQUAL_LENGTH_UNIVARIATE_REGRESSION ,
13
13
UNEQUAL_LENGTH_UNIVARIATE_REGRESSION ,
You can’t perform that action at this time.
0 commit comments