-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[model] Add support for more darts models (#48)
* Add quantification notebook * Add support for more darts regression models * Revert "Add quantification notebook" This reverts commit 348deb2. * fix docstring * rename notebook * Add Darts Forecasting Model * Rename models_simple to models_darts * fix isort * Remove classes from experiment name
- Loading branch information
Showing
10 changed files
with
183 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# make classes available upon package import | ||
from .models_darts import DartsForecastingModel # noqa: F401 to evade flake8 | ||
from .models_darts import LinearRegressionModel # noqa: F401 to evade flake8 | ||
from .models_darts import RandomForestModel # noqa: F401 to evade flake8 | ||
from .models_naive import NaiveModel, SeasonalNaiveModel # noqa: F401 to evade flake8 | ||
from .models_neuralprophet import NeuralProphetModel, TorchProphetModel # noqa: F401 to evade flake8 | ||
from .models_prophet import ProphetModel # noqa: F401 to evade flake8 | ||
from .models_simple import LinearRegressionModel # noqa: F401 to evade flake8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.