Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ENH] HierarchyEnsembleForecaster for level- or node-wise application of forecasters on panel/hierarchical data #3905

Merged
merged 27 commits into from
Jan 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c110b41
added hier-ensm frcstr
VyomkeshVyas Dec 8, 2022
f215034
Merge branch 'hier-ensm' of https://github.com/VyomkeshVyas/sktime in…
VyomkeshVyas Dec 8, 2022
477683b
updated exogenous var functionality
VyomkeshVyas Dec 9, 2022
2644d5a
updated contributors
VyomkeshVyas Dec 9, 2022
6efa86c
added unit test and updated get_test_params()
VyomkeshVyas Dec 13, 2022
ef5a605
updated level == 1 functionality
VyomkeshVyas Dec 14, 2022
ca475a2
fixed doctest and contributors file
VyomkeshVyas Dec 22, 2022
ec2479b
Merge branch 'main' into pr/3905
fkiraly Dec 22, 2022
eb58435
docstring error fixed
VyomkeshVyas Jan 10, 2023
8f2d349
Merge branch 'hier-ensm' of https://github.com/VyomkeshVyas/sktime in…
VyomkeshVyas Jan 10, 2023
f10408c
Add files via upload
VyomkeshVyas Jan 10, 2023
0ce5b95
Add files via upload
VyomkeshVyas Jan 10, 2023
8a9dae6
updated src file
VyomkeshVyas Jan 10, 2023
67ab1e4
Merge branch 'hier-ensm' of https://github.com/VyomkeshVyas/sktime in…
VyomkeshVyas Jan 10, 2023
dbaf4b3
fixed unhashable error
VyomkeshVyas Jan 10, 2023
f053f0e
some minor updates
VyomkeshVyas Jan 10, 2023
b709a3f
fixed test issues
VyomkeshVyas Jan 20, 2023
14f3fd6
conflict resolve
VyomkeshVyas Jan 20, 2023
9dfd7c2
Merge branch 'main' into pr/3905
fkiraly Jan 21, 2023
815bee8
fix merge conflict
fkiraly Jan 21, 2023
b709e84
Update .all-contributorsrc
fkiraly Jan 21, 2023
4ee519b
Update .all-contributorsrc
fkiraly Jan 21, 2023
254f23b
fix typo in doctest
fkiraly Jan 21, 2023
d9db84b
docsttring error fixed
VyomkeshVyas Jan 22, 2023
e098022
Merge branch 'hier-ensm' of https://github.com/VyomkeshVyas/sktime in…
VyomkeshVyas Jan 22, 2023
0ae76eb
Node length issue fixed
VyomkeshVyas Jan 24, 2023
6883982
Updated update and predict
VyomkeshVyas Jan 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 21 additions & 10 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,6 @@
"design"
]
},
{
"login": "nilesh05apr",
"name": "Nilesh Kumar",
"avatar_url": "https://avatars.githubusercontent.com/u/65773314?v=4",
"profile": "https://github.com/nilesh05apr",
"contributions": [
"code"
]
},
{
"login": "MatthewMiddlehurst",
"name": "Matthew Middlehurst",
Expand Down Expand Up @@ -1933,6 +1924,17 @@
"example"
]
},
{
"login": "VyomkeshVyas",
"name": "Vyomkesh Vyas",
"profile": "https://github.com/VyomkeshVyas",
"contributions": [
"code",
"doc",
"example",
"test"
]
},
{
"login": "xxl4tomxu98",
"name": "Tom Xu",
Expand Down Expand Up @@ -1962,7 +1964,16 @@
"bug"
]
},
{
{
"login": "nilesh05apr",
"name": "Nilesh Kumar",
"avatar_url": "https://avatars.githubusercontent.com/u/65773314?v=4",
"profile": "https://github.com/nilesh05apr",
"contributions": [
"code"
]
},
{
"login": "JonathanBechtel",
"name": "JonathanBechtel",
"avatar_url": "https://avatars.githubusercontent.com/u/481696?v=4",
Expand Down
1 change: 1 addition & 0 deletions docs/source/api_reference/forecasting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ Pipelines can also be constructed using ``*``, ``+``, and ``|`` dunders.
ForecastX
ForecastByLevel
Permute
HierarchyEnsembleForecaster

Reduction
---------
Expand Down
2 changes: 2 additions & 0 deletions sktime/forecasting/compose/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
__author__ = ["mloning"]

__all__ = [
"HierarchyEnsembleForecaster",
"ColumnEnsembleForecaster",
"EnsembleForecaster",
"AutoEnsembleForecaster",
Expand Down Expand Up @@ -35,6 +36,7 @@
EnsembleForecaster,
)
from sktime.forecasting.compose._grouped import ForecastByLevel
from sktime.forecasting.compose._hierarchy_ensemble import HierarchyEnsembleForecaster
from sktime.forecasting.compose._multiplexer import MultiplexForecaster
from sktime.forecasting.compose._pipeline import (
ForecastingPipeline,
Expand Down
Loading