autogluon.timeseries 1.1.2b20241121__py3-none-any.whl → 1.1.2b20241122__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/models/chronos/model.py +4 -3
- autogluon/timeseries/version.py +1 -1
- {autogluon.timeseries-1.1.2b20241121.dist-info → autogluon.timeseries-1.1.2b20241122.dist-info}/METADATA +7 -7
- {autogluon.timeseries-1.1.2b20241121.dist-info → autogluon.timeseries-1.1.2b20241122.dist-info}/RECORD +11 -11
- /autogluon.timeseries-1.1.2b20241121-py3.8-nspkg.pth → /autogluon.timeseries-1.1.2b20241122-py3.8-nspkg.pth +0 -0
- {autogluon.timeseries-1.1.2b20241121.dist-info → autogluon.timeseries-1.1.2b20241122.dist-info}/LICENSE +0 -0
- {autogluon.timeseries-1.1.2b20241121.dist-info → autogluon.timeseries-1.1.2b20241122.dist-info}/NOTICE +0 -0
- {autogluon.timeseries-1.1.2b20241121.dist-info → autogluon.timeseries-1.1.2b20241122.dist-info}/WHEEL +0 -0
- {autogluon.timeseries-1.1.2b20241121.dist-info → autogluon.timeseries-1.1.2b20241122.dist-info}/namespace_packages.txt +0 -0
- {autogluon.timeseries-1.1.2b20241121.dist-info → autogluon.timeseries-1.1.2b20241122.dist-info}/top_level.txt +0 -0
- {autogluon.timeseries-1.1.2b20241121.dist-info → autogluon.timeseries-1.1.2b20241122.dist-info}/zip-safe +0 -0
@@ -140,8 +140,9 @@ class ChronosModel(AbstractTimeSeriesModel):
|
|
140
140
|
for more information.
|
141
141
|
fine_tune : bool, default = False
|
142
142
|
If True, the pretrained model will be fine-tuned
|
143
|
-
fine_tune_lr: float, default =
|
144
|
-
The learning rate used for fine-tuning
|
143
|
+
fine_tune_lr: float, default = 1e-5
|
144
|
+
The learning rate used for fine-tuning. This default is suitable for Chronos-Bolt models; for the original
|
145
|
+
Chronos models, we recommend using a higher learning rate such as ``1e-4``
|
145
146
|
fine_tune_steps : int, default = 1000
|
146
147
|
The number of gradient update steps to fine-tune for
|
147
148
|
fine_tune_batch_size : int, default = 32
|
@@ -321,7 +322,7 @@ class ChronosModel(AbstractTimeSeriesModel):
|
|
321
322
|
|
322
323
|
init_args.setdefault("fine_tune", False)
|
323
324
|
init_args.setdefault("keep_transformers_logs", False)
|
324
|
-
init_args.setdefault("fine_tune_lr", 1e-
|
325
|
+
init_args.setdefault("fine_tune_lr", 1e-5)
|
325
326
|
init_args.setdefault("fine_tune_steps", 1000)
|
326
327
|
init_args.setdefault("fine_tune_batch_size", 32)
|
327
328
|
init_args.setdefault("eval_during_fine_tune", False)
|
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.2b20241122
|
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
|
@@ -35,15 +35,15 @@ Classifier: Topic :: Scientific/Engineering :: Image Recognition
|
|
35
35
|
Requires-Python: >=3.9, <3.13
|
36
36
|
Description-Content-Type: text/markdown
|
37
37
|
Requires-Dist: joblib<2,>=1.1
|
38
|
-
Requires-Dist: numpy<1.
|
39
|
-
Requires-Dist: scipy<1.
|
38
|
+
Requires-Dist: numpy<2.1.4,>=1.25.0
|
39
|
+
Requires-Dist: scipy<1.16,>=1.5.4
|
40
40
|
Requires-Dist: pandas<2.3.0,>=2.0.0
|
41
41
|
Requires-Dist: torch<2.6,>=2.2
|
42
42
|
Requires-Dist: lightning<2.6,>=2.2
|
43
43
|
Requires-Dist: pytorch-lightning
|
44
44
|
Requires-Dist: transformers[sentencepiece]<5,>=4.38.0
|
45
45
|
Requires-Dist: accelerate<1.0,>=0.32.0
|
46
|
-
Requires-Dist: gluonts
|
46
|
+
Requires-Dist: gluonts<0.17,>=0.15.0
|
47
47
|
Requires-Dist: networkx<4,>=3.0
|
48
48
|
Requires-Dist: statsforecast<1.8,>=1.7.0
|
49
49
|
Requires-Dist: mlforecast==0.13.4
|
@@ -53,9 +53,9 @@ Requires-Dist: fugue>=0.9.0
|
|
53
53
|
Requires-Dist: tqdm<5,>=4.38
|
54
54
|
Requires-Dist: orjson~=3.9
|
55
55
|
Requires-Dist: tensorboard<3,>=2.9
|
56
|
-
Requires-Dist: autogluon.core[raytune]==1.1.
|
57
|
-
Requires-Dist: autogluon.common==1.1.
|
58
|
-
Requires-Dist: autogluon.tabular[catboost,lightgbm,xgboost]==1.1.
|
56
|
+
Requires-Dist: autogluon.core[raytune]==1.1.2b20241122
|
57
|
+
Requires-Dist: autogluon.common==1.1.2b20241122
|
58
|
+
Requires-Dist: autogluon.tabular[catboost,lightgbm,xgboost]==1.1.2b20241122
|
59
59
|
Provides-Extra: all
|
60
60
|
Requires-Dist: optimum[onnxruntime]<1.20,>=1.17; extra == "all"
|
61
61
|
Provides-Extra: chronos-onnx
|
@@ -1,11 +1,11 @@
|
|
1
|
-
autogluon.timeseries-1.1.
|
1
|
+
autogluon.timeseries-1.1.2b20241122-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=mFnBC750C5PqgkkYNYni9oYQ5a6K8pXSsDLRDXuA7DI,14182
|
5
5
|
autogluon/timeseries/predictor.py,sha256=EsJAkzlEkCFxYO55BTfjlaJPNwQwnS6yyj5nXjMr3XQ,85003
|
6
6
|
autogluon/timeseries/regressor.py,sha256=tqQ2zWImxpuEyaAM0DeCjOZ-xcWUYZbCXsqd471xXxQ,8351
|
7
7
|
autogluon/timeseries/splitter.py,sha256=eghGwAAN2_cxGk5aJBILgjGWtLzjxJcytMy49gg_q18,3061
|
8
|
-
autogluon/timeseries/version.py,sha256=
|
8
|
+
autogluon/timeseries/version.py,sha256=HrqztH5NdihgPm4J8swToGzmYqoQTkpSv8fWpyc0_HE,90
|
9
9
|
autogluon/timeseries/configs/__init__.py,sha256=BTtHIPCYeGjqgOcvqb8qPD4VNX-ICKOg6wnkew1cPOE,98
|
10
10
|
autogluon/timeseries/configs/presets_configs.py,sha256=cLat8ecLlWrI-SC5KLBDCX2SbVXaucemy2pjxJAtSY0,2543
|
11
11
|
autogluon/timeseries/dataset/__init__.py,sha256=UvnhAN5tjgxXTHoZMQDy64YMDj4Xxa68yY7NP4vAw0o,81
|
@@ -25,7 +25,7 @@ autogluon/timeseries/models/autogluon_tabular/mlforecast.py,sha256=vfWXLdxYlbzjK
|
|
25
25
|
autogluon/timeseries/models/autogluon_tabular/transforms.py,sha256=XVoy8KpvoeX38lHHAXq4Be9LCxKjxZ36SOFeSAICRFM,2524
|
26
26
|
autogluon/timeseries/models/autogluon_tabular/utils.py,sha256=Fn3Vu_Q0PCtEUbtNgLp1xIblg7dOdpFlF3W5kLHgruI,63
|
27
27
|
autogluon/timeseries/models/chronos/__init__.py,sha256=wT77HzTtmQxW3sw2k0mA5Ot6PSHivX-Uvn5fjM05EU4,60
|
28
|
-
autogluon/timeseries/models/chronos/model.py,sha256=
|
28
|
+
autogluon/timeseries/models/chronos/model.py,sha256=GGaipPiwMBbdwNDwbLdoLeg-8E7in5QVHtbosU8QCWI,29249
|
29
29
|
autogluon/timeseries/models/chronos/pipeline/__init__.py,sha256=N-YZH9BGBoi99r5cznJe1zEEjwjIg7cOYIHZkKuJq44,247
|
30
30
|
autogluon/timeseries/models/chronos/pipeline/base.py,sha256=HlWQTS5q7UMzwbA5Pmg_N01AxuGfTf2tP5xq2jgavqI,5549
|
31
31
|
autogluon/timeseries/models/chronos/pipeline/chronos.py,sha256=doAaWbrfNilkP9ORtjDnL-1S5ge4sOKhzGN-mgsY2bM,22158
|
@@ -60,11 +60,11 @@ autogluon/timeseries/utils/datetime/base.py,sha256=3NdsH3NDq4cVAOSoy3XpaNixyNlbj
|
|
60
60
|
autogluon/timeseries/utils/datetime/lags.py,sha256=GoLtvcZ8oKb3QkoBJ9E59LSPLOP7Qjxrr2UmMSZgjyw,5909
|
61
61
|
autogluon/timeseries/utils/datetime/seasonality.py,sha256=h_4w00iEytAz_N_EpCENQ8RCXy7KQITczrYjBgVqWkQ,764
|
62
62
|
autogluon/timeseries/utils/datetime/time_features.py,sha256=PAXbYbQ0z_5GFbkxSNi41zLY_2-U3x0Ynm1m_WhdtGc,2572
|
63
|
-
autogluon.timeseries-1.1.
|
64
|
-
autogluon.timeseries-1.1.
|
65
|
-
autogluon.timeseries-1.1.
|
66
|
-
autogluon.timeseries-1.1.
|
67
|
-
autogluon.timeseries-1.1.
|
68
|
-
autogluon.timeseries-1.1.
|
69
|
-
autogluon.timeseries-1.1.
|
70
|
-
autogluon.timeseries-1.1.
|
63
|
+
autogluon.timeseries-1.1.2b20241122.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
64
|
+
autogluon.timeseries-1.1.2b20241122.dist-info/METADATA,sha256=tpxBIzCdPJ6K09gCV8rrndenaYmYaN6LvvzempvvEDI,12397
|
65
|
+
autogluon.timeseries-1.1.2b20241122.dist-info/NOTICE,sha256=7nPQuj8Kp-uXsU0S5so3-2dNU5EctS5hDXvvzzehd7E,114
|
66
|
+
autogluon.timeseries-1.1.2b20241122.dist-info/WHEEL,sha256=bFJAMchF8aTQGUgMZzHJyDDMPTO3ToJ7x23SLJa1SVo,92
|
67
|
+
autogluon.timeseries-1.1.2b20241122.dist-info/namespace_packages.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
68
|
+
autogluon.timeseries-1.1.2b20241122.dist-info/top_level.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
69
|
+
autogluon.timeseries-1.1.2b20241122.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
70
|
+
autogluon.timeseries-1.1.2b20241122.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|