autogluon.timeseries 1.1.2b20241008__py3-none-any.whl → 1.1.2b20241010__py3-none-any.whl
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.
- autogluon/timeseries/predictor.py +2 -2
- autogluon/timeseries/version.py +1 -1
- {autogluon.timeseries-1.1.2b20241008.dist-info → autogluon.timeseries-1.1.2b20241010.dist-info}/METADATA +4 -4
- {autogluon.timeseries-1.1.2b20241008.dist-info → autogluon.timeseries-1.1.2b20241010.dist-info}/RECORD +11 -11
- /autogluon.timeseries-1.1.2b20241008-py3.8-nspkg.pth → /autogluon.timeseries-1.1.2b20241010-py3.8-nspkg.pth +0 -0
- {autogluon.timeseries-1.1.2b20241008.dist-info → autogluon.timeseries-1.1.2b20241010.dist-info}/LICENSE +0 -0
- {autogluon.timeseries-1.1.2b20241008.dist-info → autogluon.timeseries-1.1.2b20241010.dist-info}/NOTICE +0 -0
- {autogluon.timeseries-1.1.2b20241008.dist-info → autogluon.timeseries-1.1.2b20241010.dist-info}/WHEEL +0 -0
- {autogluon.timeseries-1.1.2b20241008.dist-info → autogluon.timeseries-1.1.2b20241010.dist-info}/namespace_packages.txt +0 -0
- {autogluon.timeseries-1.1.2b20241008.dist-info → autogluon.timeseries-1.1.2b20241010.dist-info}/top_level.txt +0 -0
- {autogluon.timeseries-1.1.2b20241008.dist-info → autogluon.timeseries-1.1.2b20241010.dist-info}/zip-safe +0 -0
@@ -416,7 +416,7 @@ class TimeSeriesPredictor(TimeSeriesPredictorDeprecatedMixin):
|
|
416
416
|
excluded_model_types: Optional[List[str]] = None,
|
417
417
|
num_val_windows: int = 1,
|
418
418
|
val_step_size: Optional[int] = None,
|
419
|
-
refit_every_n_windows: int = 1,
|
419
|
+
refit_every_n_windows: Optional[int] = 1,
|
420
420
|
refit_full: bool = False,
|
421
421
|
enable_ensemble: bool = True,
|
422
422
|
skip_model_selection: bool = False,
|
@@ -720,7 +720,7 @@ class TimeSeriesPredictor(TimeSeriesPredictorDeprecatedMixin):
|
|
720
720
|
if num_val_windows == 0 and tuning_data is None:
|
721
721
|
raise ValueError("Please set num_val_windows >= 1 or provide custom tuning_data")
|
722
722
|
|
723
|
-
if num_val_windows <= 1 and refit_every_n_windows > 1:
|
723
|
+
if num_val_windows <= 1 and refit_every_n_windows is not None and refit_every_n_windows > 1:
|
724
724
|
logger.warning(
|
725
725
|
f"\trefit_every_n_windows provided as {refit_every_n_windows} but num_val_windows is set to {num_val_windows}."
|
726
726
|
" Refit_every_n_windows will have no effect."
|
autogluon/timeseries/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: autogluon.timeseries
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.2b20241010
|
4
4
|
Summary: Fast and Accurate ML in 3 Lines of Code
|
5
5
|
Home-page: https://github.com/autogluon/autogluon
|
6
6
|
Author: AutoGluon Community
|
@@ -52,9 +52,9 @@ Requires-Dist: fugue>=0.9.0
|
|
52
52
|
Requires-Dist: tqdm<5,>=4.38
|
53
53
|
Requires-Dist: orjson~=3.9
|
54
54
|
Requires-Dist: tensorboard<3,>=2.9
|
55
|
-
Requires-Dist: autogluon.core[raytune]==1.1.
|
56
|
-
Requires-Dist: autogluon.common==1.1.
|
57
|
-
Requires-Dist: autogluon.tabular[catboost,lightgbm,xgboost]==1.1.
|
55
|
+
Requires-Dist: autogluon.core[raytune]==1.1.2b20241010
|
56
|
+
Requires-Dist: autogluon.common==1.1.2b20241010
|
57
|
+
Requires-Dist: autogluon.tabular[catboost,lightgbm,xgboost]==1.1.2b20241010
|
58
58
|
Provides-Extra: all
|
59
59
|
Requires-Dist: optimum[onnxruntime]<1.19,>=1.17; extra == "all"
|
60
60
|
Provides-Extra: chronos-onnx
|
@@ -1,10 +1,10 @@
|
|
1
|
-
autogluon.timeseries-1.1.
|
1
|
+
autogluon.timeseries-1.1.2b20241010-py3.8-nspkg.pth,sha256=cQGwpuGPqg1GXscIwt-7PmME1OnSpD-7ixkikJ31WAY,554
|
2
2
|
autogluon/timeseries/__init__.py,sha256=_CrLLc1fkjen7UzWoO0Os8WZoHOgvZbHKy46I8v_4k4,304
|
3
3
|
autogluon/timeseries/evaluator.py,sha256=l642tYfTHsl8WVIq_vV6qhgAFVFr9UuZD7gLra3A_Kc,250
|
4
4
|
autogluon/timeseries/learner.py,sha256=NXhftyqMD8Bl1QHIBN82UKP0UlCV_ACughZqkmMf4oY,14043
|
5
|
-
autogluon/timeseries/predictor.py,sha256=
|
5
|
+
autogluon/timeseries/predictor.py,sha256=3HdPaxvhS-FatQ0Rf5xvMw5NgU3BXlt8m8nwRgC-b2U,84399
|
6
6
|
autogluon/timeseries/splitter.py,sha256=eghGwAAN2_cxGk5aJBILgjGWtLzjxJcytMy49gg_q18,3061
|
7
|
-
autogluon/timeseries/version.py,sha256=
|
7
|
+
autogluon/timeseries/version.py,sha256=0Q7yiG6qvbrc_IM6T7_Hcmp1UUE7jQXajaeS4pVw0x8,90
|
8
8
|
autogluon/timeseries/configs/__init__.py,sha256=BTtHIPCYeGjqgOcvqb8qPD4VNX-ICKOg6wnkew1cPOE,98
|
9
9
|
autogluon/timeseries/configs/presets_configs.py,sha256=94-yL9teDHKs2irWjP3kpewI7FE1ChYCgEgz9XHJ6gc,1965
|
10
10
|
autogluon/timeseries/dataset/__init__.py,sha256=UvnhAN5tjgxXTHoZMQDy64YMDj4Xxa68yY7NP4vAw0o,81
|
@@ -55,11 +55,11 @@ autogluon/timeseries/utils/datetime/base.py,sha256=3NdsH3NDq4cVAOSoy3XpaNixyNlbj
|
|
55
55
|
autogluon/timeseries/utils/datetime/lags.py,sha256=GoLtvcZ8oKb3QkoBJ9E59LSPLOP7Qjxrr2UmMSZgjyw,5909
|
56
56
|
autogluon/timeseries/utils/datetime/seasonality.py,sha256=h_4w00iEytAz_N_EpCENQ8RCXy7KQITczrYjBgVqWkQ,764
|
57
57
|
autogluon/timeseries/utils/datetime/time_features.py,sha256=PAXbYbQ0z_5GFbkxSNi41zLY_2-U3x0Ynm1m_WhdtGc,2572
|
58
|
-
autogluon.timeseries-1.1.
|
59
|
-
autogluon.timeseries-1.1.
|
60
|
-
autogluon.timeseries-1.1.
|
61
|
-
autogluon.timeseries-1.1.
|
62
|
-
autogluon.timeseries-1.1.
|
63
|
-
autogluon.timeseries-1.1.
|
64
|
-
autogluon.timeseries-1.1.
|
65
|
-
autogluon.timeseries-1.1.
|
58
|
+
autogluon.timeseries-1.1.2b20241010.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
59
|
+
autogluon.timeseries-1.1.2b20241010.dist-info/METADATA,sha256=9VREP5WhtPzlXBDGgNnzwC3uV_u7ogChaTodZN45RLY,12355
|
60
|
+
autogluon.timeseries-1.1.2b20241010.dist-info/NOTICE,sha256=7nPQuj8Kp-uXsU0S5so3-2dNU5EctS5hDXvvzzehd7E,114
|
61
|
+
autogluon.timeseries-1.1.2b20241010.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
62
|
+
autogluon.timeseries-1.1.2b20241010.dist-info/namespace_packages.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
63
|
+
autogluon.timeseries-1.1.2b20241010.dist-info/top_level.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
64
|
+
autogluon.timeseries-1.1.2b20241010.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
65
|
+
autogluon.timeseries-1.1.2b20241010.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|