spotforecast2 2.2.3__tar.gz → 2.2.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/PKG-INFO +1 -1
  2. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/pyproject.toml +1 -1
  3. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/model_selection/bayesian_search.py +2 -1
  4. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/model_selection/spotoptim_search.py +3 -2
  5. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/README.md +0 -0
  6. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/__init__.py +0 -0
  7. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/model_selection/__init__.py +0 -0
  8. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/model_selection/grid_search.py +0 -0
  9. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/model_selection/random_search.py +0 -0
  10. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/model_selection/utils_metrics.py +0 -0
  11. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/models/__init__.py +0 -0
  12. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/models/forecaster_recursive_lgbm_full.py +0 -0
  13. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/models/forecaster_recursive_model_full.py +0 -0
  14. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/models/forecaster_recursive_xgb_full.py +0 -0
  15. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/__init__.py +0 -0
  16. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/base.py +0 -0
  17. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/clean.py +0 -0
  18. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/defaults.py +0 -0
  19. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/factories.py +0 -0
  20. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/lazy.py +0 -0
  21. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/multi.py +0 -0
  22. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/optuna.py +0 -0
  23. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/predict.py +0 -0
  24. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/runner.py +0 -0
  25. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/search_spaces.py +0 -0
  26. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/spotoptim.py +0 -0
  27. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/multitask/strategies.py +0 -0
  28. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/plots/__init__.py +0 -0
  29. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/plots/assets/__init__.py +0 -0
  30. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/plots/assets/prediction_report.html.j2 +0 -0
  31. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/plots/distribution.py +0 -0
  32. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/plots/outlier_plots.py +0 -0
  33. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/plots/plotter.py +0 -0
  34. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/plots/spectral.py +0 -0
  35. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/plots/time_series_visualization.py +0 -0
  36. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/py.typed +0 -0
  37. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/stats/__init__.py +0 -0
  38. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/stats/autocorrelation.py +0 -0
  39. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/tasks/__init__.py +0 -0
  40. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/tasks/task_demo.py +0 -0
  41. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/tasks/task_entsoe.py +0 -0
  42. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/tasks/task_n_to_1.py +0 -0
  43. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/tasks/task_n_to_1_dataframe.py +0 -0
  44. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/tasks/task_n_to_1_with_covariates.py +0 -0
  45. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/tasks/task_n_to_1_with_covariates_and_dataframe.py +0 -0
  46. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/warnings/__init__.py +0 -0
  47. {spotforecast2-2.2.3 → spotforecast2-2.2.4}/src/spotforecast2/warnings/exceptions.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: spotforecast2
3
- Version: 2.2.3
3
+ Version: 2.2.4
4
4
  Summary: Forecasting with spot
5
5
  Author: bartzbeielstein
6
6
  Author-email: bartzbeielstein <32470350+bartzbeielstein@users.noreply.github.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "spotforecast2"
3
- version = "2.2.3"
3
+ version = "2.2.4"
4
4
  description = "Forecasting with spot"
5
5
  readme = "README.md"
6
6
  license = { text = "AGPL-3.0-or-later" }
@@ -33,7 +33,8 @@ from spotforecast2_safe.splitter.utils_common import (
33
33
  from spotforecast2.model_selection.utils_metrics import (
34
34
  _calculate_metrics_one_step_ahead,
35
35
  )
36
- from spotforecast2_safe.forecaster.utils import initialize_lags, date_to_index_position
36
+ from spotforecast2_safe.forecaster.utils import date_to_index_position
37
+ from spotforecast2_safe.preprocessing.forecaster_config import initialize_lags
37
38
  from spotforecast2_safe.exceptions import IgnoredArgumentWarning
38
39
  from spotforecast2_safe.exceptions import set_skforecast_warnings
39
40
 
@@ -35,7 +35,8 @@ except ImportError:
35
35
 
36
36
  from spotforecast2_safe.exceptions import IgnoredArgumentWarning
37
37
  from spotforecast2_safe.forecaster.metrics import _get_metric, add_y_train_argument
38
- from spotforecast2_safe.forecaster.utils import date_to_index_position, initialize_lags
38
+ from spotforecast2_safe.forecaster.utils import date_to_index_position
39
+ from spotforecast2_safe.preprocessing.forecaster_config import initialize_lags
39
40
  from spotforecast2_safe.splitter.split_ts_cv import TimeSeriesFold
40
41
  from spotforecast2_safe.splitter.utils_common import (
41
42
  check_backtesting_input,
@@ -577,7 +578,7 @@ def spotoptim_search(
577
578
  exog=exog,
578
579
  n_jobs=n_jobs,
579
580
  verbose=verbose,
580
- show_progress=False,
581
+ show_progress=True,
581
582
  suppress_warnings=suppress_warnings,
582
583
  var_name=var_name,
583
584
  var_type=var_type,
File without changes