autogluon.core 1.2.1b20250414__py3-none-any.whl → 1.2.1b20250416__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/core/_setup_utils.py +2 -2
- autogluon/core/models/abstract/abstract_model.py +3 -2
- autogluon/core/version.py +1 -1
- {autogluon.core-1.2.1b20250414.dist-info → autogluon.core-1.2.1b20250416.dist-info}/METADATA +8 -8
- {autogluon.core-1.2.1b20250414.dist-info → autogluon.core-1.2.1b20250416.dist-info}/RECORD +12 -12
- /autogluon.core-1.2.1b20250414-py3.9-nspkg.pth → /autogluon.core-1.2.1b20250416-py3.9-nspkg.pth +0 -0
- {autogluon.core-1.2.1b20250414.dist-info → autogluon.core-1.2.1b20250416.dist-info}/LICENSE +0 -0
- {autogluon.core-1.2.1b20250414.dist-info → autogluon.core-1.2.1b20250416.dist-info}/NOTICE +0 -0
- {autogluon.core-1.2.1b20250414.dist-info → autogluon.core-1.2.1b20250416.dist-info}/WHEEL +0 -0
- {autogluon.core-1.2.1b20250414.dist-info → autogluon.core-1.2.1b20250416.dist-info}/namespace_packages.txt +0 -0
- {autogluon.core-1.2.1b20250414.dist-info → autogluon.core-1.2.1b20250416.dist-info}/top_level.txt +0 -0
- {autogluon.core-1.2.1b20250414.dist-info → autogluon.core-1.2.1b20250416.dist-info}/zip-safe +0 -0
autogluon/core/_setup_utils.py
CHANGED
@@ -19,7 +19,7 @@ DEPENDENT_PACKAGES = {
|
|
19
19
|
"boto3": ">=1.10,<2", # <2 because unlikely to introduce breaking changes in minor releases. >=1.10 because 1.10 is 3 years old, no need to support older
|
20
20
|
"numpy": ">=1.25.0,<2.3.0", # "<{N+3}" upper cap, where N is the latest released minor version, assuming no warnings using N
|
21
21
|
"pandas": ">=2.0.0,<2.3.0", # "<{N+3}" upper cap
|
22
|
-
"scikit-learn": ">=1.4.0,<1.
|
22
|
+
"scikit-learn": ">=1.4.0,<1.7.0", # <{N+1} upper cap
|
23
23
|
"scipy": ">=1.5.4,<1.16", # "<{N+2}" upper cap
|
24
24
|
"matplotlib": ">=3.7.0,<3.11", # "<{N+2}" upper cap
|
25
25
|
"psutil": ">=5.7.3,<7.1.0", # Major version cap
|
@@ -30,7 +30,7 @@ DEPENDENT_PACKAGES = {
|
|
30
30
|
"torch": ">=2.2,<2.7", # Major version cap, sync with common/src/autogluon/common/utils/try_import.py
|
31
31
|
"lightning": ">=2.2,<2.7", # Major version cap
|
32
32
|
"async_timeout": ">=4.0,<6", # Major version cap
|
33
|
-
"transformers[sentencepiece]": ">=4.38.0,<4.50",
|
33
|
+
"transformers[sentencepiece]": ">=4.38.0,<4.50", # there is a breaking change in 4.50 for model config saving
|
34
34
|
"accelerate": ">=0.34.0,<2.0",
|
35
35
|
"typing-extensions": ">=4.0,<5",
|
36
36
|
}
|
@@ -79,6 +79,7 @@ class Taggable(ABC):
|
|
79
79
|
collected_tags.update(more_tags)
|
80
80
|
return collected_tags
|
81
81
|
|
82
|
+
|
82
83
|
@classmethod
|
83
84
|
def _get_class_tags(cls) -> dict:
|
84
85
|
"""
|
@@ -797,8 +798,8 @@ class AbstractModel(ModelBase, Tunable):
|
|
797
798
|
), f"Specified num_cpus per {self.__class__.__name__} is more than the total: {system_num_cpus}"
|
798
799
|
if user_specified_lower_level_num_gpus is not None:
|
799
800
|
assert (
|
800
|
-
user_specified_lower_level_num_gpus <=
|
801
|
-
), f"Specified num_gpus per {self.__class__.__name__} is more than the total: {
|
801
|
+
user_specified_lower_level_num_gpus <= system_num_gpus
|
802
|
+
), f"Specified num_gpus per {self.__class__.__name__} is more than the total: {system_num_gpus}"
|
802
803
|
k_fold = kwargs.get("k_fold", None)
|
803
804
|
k_fold = 1 if self.params.get("use_child_oof", False) else k_fold
|
804
805
|
if k_fold is not None and k_fold > 0:
|
autogluon/core/version.py
CHANGED
{autogluon.core-1.2.1b20250414.dist-info → autogluon.core-1.2.1b20250416.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: autogluon.core
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.1b20250416
|
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
|
@@ -38,19 +38,19 @@ License-File: ../LICENSE
|
|
38
38
|
License-File: ../NOTICE
|
39
39
|
Requires-Dist: numpy<2.3.0,>=1.25.0
|
40
40
|
Requires-Dist: scipy<1.16,>=1.5.4
|
41
|
-
Requires-Dist: scikit-learn<1.
|
41
|
+
Requires-Dist: scikit-learn<1.7.0,>=1.4.0
|
42
42
|
Requires-Dist: networkx<4,>=3.0
|
43
43
|
Requires-Dist: pandas<2.3.0,>=2.0.0
|
44
44
|
Requires-Dist: tqdm<5,>=4.38
|
45
45
|
Requires-Dist: requests
|
46
46
|
Requires-Dist: matplotlib<3.11,>=3.7.0
|
47
47
|
Requires-Dist: boto3<2,>=1.10
|
48
|
-
Requires-Dist: autogluon.common==1.2.
|
48
|
+
Requires-Dist: autogluon.common==1.2.1b20250416
|
49
49
|
Provides-Extra: all
|
50
|
-
Requires-Dist: ray[default]<2.45,>=2.10.0; extra == "all"
|
51
|
-
Requires-Dist: ray[default,tune]<2.45,>=2.10.0; extra == "all"
|
52
50
|
Requires-Dist: pyarrow>=15.0.0; extra == "all"
|
53
51
|
Requires-Dist: hyperopt<0.2.8,>=0.2.7; extra == "all"
|
52
|
+
Requires-Dist: ray[default,tune]<2.45,>=2.10.0; extra == "all"
|
53
|
+
Requires-Dist: ray[default]<2.45,>=2.10.0; extra == "all"
|
54
54
|
Provides-Extra: ray
|
55
55
|
Requires-Dist: ray[default]<2.45,>=2.10.0; extra == "ray"
|
56
56
|
Provides-Extra: raytune
|
@@ -58,11 +58,11 @@ Requires-Dist: pyarrow>=15.0.0; extra == "raytune"
|
|
58
58
|
Requires-Dist: ray[default,tune]<2.45,>=2.10.0; extra == "raytune"
|
59
59
|
Requires-Dist: hyperopt<0.2.8,>=0.2.7; extra == "raytune"
|
60
60
|
Provides-Extra: tests
|
61
|
-
Requires-Dist: types-setuptools; extra == "tests"
|
62
61
|
Requires-Dist: types-requests; extra == "tests"
|
63
|
-
Requires-Dist: flake8; extra == "tests"
|
64
|
-
Requires-Dist: pytest; extra == "tests"
|
65
62
|
Requires-Dist: pytest-mypy; extra == "tests"
|
63
|
+
Requires-Dist: pytest; extra == "tests"
|
64
|
+
Requires-Dist: flake8; extra == "tests"
|
65
|
+
Requires-Dist: types-setuptools; extra == "tests"
|
66
66
|
|
67
67
|
|
68
68
|
|
@@ -1,9 +1,9 @@
|
|
1
|
-
autogluon.core-1.2.
|
1
|
+
autogluon.core-1.2.1b20250416-py3.9-nspkg.pth,sha256=cQGwpuGPqg1GXscIwt-7PmME1OnSpD-7ixkikJ31WAY,554
|
2
2
|
autogluon/core/__init__.py,sha256=8KfvvHzXX3a4q6z43Dw1yE7VtbAoiSMaglVpKDy6Xeg,245
|
3
|
-
autogluon/core/_setup_utils.py,sha256=
|
3
|
+
autogluon/core/_setup_utils.py,sha256=TnDboM66MzSp0CLACo_vcNNwhORQWE8JL0kt1IYa7dI,7014
|
4
4
|
autogluon/core/constants.py,sha256=nEVLdSFJ-5O-tz3jUD3qPX65RMp7g8qOR38XlurbP4Y,3403
|
5
5
|
autogluon/core/problem_type.py,sha256=XJmMgeNBgS7u43pDK-spTivatPyh_INOXveEXwQt-Rw,2993
|
6
|
-
autogluon/core/version.py,sha256=
|
6
|
+
autogluon/core/version.py,sha256=qRiT5RKmHqutDnkFPpmNCIubktJud5v6ljMK0Td-yh0,91
|
7
7
|
autogluon/core/augmentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
autogluon/core/augmentation/distill_utils.py,sha256=JBlp2WOMNKoJv8aKVwJVRQSalSk8jx36HM7-k_VvkhY,9404
|
9
9
|
autogluon/core/calibrate/__init__.py,sha256=eU6qLj7DKUhaz2HHNHDrfroRaLM-mhuSncK_v1UP4F8,62
|
@@ -40,7 +40,7 @@ autogluon/core/models/__init__.py,sha256=raRAG4wml-xvCKp3zxthda7of9NEWcpafgpvZWJ
|
|
40
40
|
autogluon/core/models/_utils.py,sha256=qswE9n1ge1AJSExgstEbrZiMFmMRa4Mf5Sz8D9-XU6c,2091
|
41
41
|
autogluon/core/models/abstract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
42
|
autogluon/core/models/abstract/_tags.py,sha256=Qr_3an0ZMig24S3OwISa-nTFfWHQe3pwPTiXq4zlEec,3409
|
43
|
-
autogluon/core/models/abstract/abstract_model.py,sha256=
|
43
|
+
autogluon/core/models/abstract/abstract_model.py,sha256=S4S_cYO_CZtk2tnk6-IwpXP0V7RfWYHsR9R7DmGMnPU,124310
|
44
44
|
autogluon/core/models/abstract/abstract_nn_model.py,sha256=IId0ivO8uVvmpnK9OiM2CtPVrP1ewOaQQKtQUDtK7_k,4818
|
45
45
|
autogluon/core/models/abstract/model_trial.py,sha256=PKEo1jfLSBCOLM42QE5VBD1u41MaVMRk31zhNhLiqTw,5035
|
46
46
|
autogluon/core/models/dummy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -89,11 +89,11 @@ autogluon/core/utils/utils.py,sha256=FMa9kIUAxA3IIBbATmBnNEVObSAivehZ2_zCy3PRR-c
|
|
89
89
|
autogluon/core/utils/version_utils.py,sha256=5-r8hLRKTaZbj5qo2uzE_2E4casH49Ye3WyeHlgHuz4,3252
|
90
90
|
autogluon/core/utils/loaders/__init__.py,sha256=W5FAdQvpDcn_uisqJrlSAObWVta-YjJLKGN3NCbEgIo,109
|
91
91
|
autogluon/core/utils/savers/__init__.py,sha256=bGWciSxAkj6u06vOC4pTvr22f_1ey0glgvmjCMEOm78,89
|
92
|
-
autogluon.core-1.2.
|
93
|
-
autogluon.core-1.2.
|
94
|
-
autogluon.core-1.2.
|
95
|
-
autogluon.core-1.2.
|
96
|
-
autogluon.core-1.2.
|
97
|
-
autogluon.core-1.2.
|
98
|
-
autogluon.core-1.2.
|
99
|
-
autogluon.core-1.2.
|
92
|
+
autogluon.core-1.2.1b20250416.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
93
|
+
autogluon.core-1.2.1b20250416.dist-info/METADATA,sha256=NNkr5lZiYKwjw7GhgSsj9mdk4dg2mppSqvdDFiDHPxg,12399
|
94
|
+
autogluon.core-1.2.1b20250416.dist-info/NOTICE,sha256=7nPQuj8Kp-uXsU0S5so3-2dNU5EctS5hDXvvzzehd7E,114
|
95
|
+
autogluon.core-1.2.1b20250416.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
96
|
+
autogluon.core-1.2.1b20250416.dist-info/namespace_packages.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
97
|
+
autogluon.core-1.2.1b20250416.dist-info/top_level.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
98
|
+
autogluon.core-1.2.1b20250416.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
99
|
+
autogluon.core-1.2.1b20250416.dist-info/RECORD,,
|
/autogluon.core-1.2.1b20250414-py3.9-nspkg.pth → /autogluon.core-1.2.1b20250416-py3.9-nspkg.pth
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{autogluon.core-1.2.1b20250414.dist-info → autogluon.core-1.2.1b20250416.dist-info}/top_level.txt
RENAMED
File without changes
|
{autogluon.core-1.2.1b20250414.dist-info → autogluon.core-1.2.1b20250416.dist-info}/zip-safe
RENAMED
File without changes
|