Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 2 additions & 5 deletions aeon/forecasting/machine_learning/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
"""Machine learning based forecasters."""

__all__ = [
"SETARTree",
"SETARForest",
"SETAR",
]
__all__ = ["SETARTree", "SETARForest", "SETAR", "TBATSForecaster", "BATSForecaster"]

from aeon.forecasting.machine_learning._setar import SETAR
from aeon.forecasting.machine_learning._setarforest import SETARForest
from aeon.forecasting.machine_learning._setartree import SETARTree
from aeon.forecasting.machine_learning._tbats import BATSForecaster, TBATSForecaster
Loading
Loading