autogluon.core 1.2.1b20250410__py3-none-any.whl → 1.2.1b20250412__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.
@@ -17,13 +17,13 @@ PYTHON_REQUIRES = ">=3.9, <3.13"
17
17
  # Only put packages here that would otherwise appear multiple times across different module's setup.py files.
18
18
  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
- "numpy": ">=1.25.0,<2.1.4", # "<{N+3}" upper cap, where N is the latest released minor version, assuming no warnings using N
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.5.3", # capping to latest version
22
+ "scikit-learn": ">=1.4.0,<1.6.0", # For >=1.6.0 support, we need to use __sklearn_tags__ https://scikit-learn.org/stable/developers/develop.html#estimator-tags
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
- "psutil": ">=5.7.3,<7.0.0", # Major version cap
26
- "s3fs": ">=2023.1,<2025", # Yearly cap
25
+ "psutil": ">=5.7.3,<7.1.0", # Major version cap
26
+ "s3fs": ">=2024.2,<2026", # Yearly cap
27
27
  "networkx": ">=3.0,<4", # Major version cap
28
28
  "tqdm": ">=4.38,<5", # Major version cap
29
29
  "Pillow": ">=10.0.1,<12", # Major version cap
@@ -603,7 +603,7 @@ pearsonr = make_scorer("pearsonr", local_pearsonr, optimum=1.0, greater_is_bette
603
603
 
604
604
  def rmse_func(y_true, y_pred, **kwargs):
605
605
  if kwargs:
606
- return sklearn.metrics.mean_squared_error(y_true, y_pred, squared=False, **kwargs)
606
+ return sklearn.metrics.root_mean_squared_error(y_true, y_pred, **kwargs)
607
607
  else:
608
608
  return np.sqrt(((y_true - y_pred) ** 2).mean())
609
609
 
autogluon/core/version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  """This is the autogluon version file."""
2
2
 
3
- __version__ = "1.2.1b20250410"
3
+ __version__ = "1.2.1b20250412"
4
4
  __lite__ = False
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: autogluon.core
3
- Version: 1.2.1b20250410
3
+ Version: 1.2.1b20250412
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
@@ -36,33 +36,33 @@ Requires-Python: >=3.9, <3.13
36
36
  Description-Content-Type: text/markdown
37
37
  License-File: ../LICENSE
38
38
  License-File: ../NOTICE
39
- Requires-Dist: numpy<2.1.4,>=1.25.0
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.5.3,>=1.4.0
41
+ Requires-Dist: scikit-learn<1.6.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.1b20250410
48
+ Requires-Dist: autogluon.common==1.2.1b20250412
49
49
  Provides-Extra: all
50
+ Requires-Dist: ray[default,tune]<2.45,>=2.10.0; extra == "all"
50
51
  Requires-Dist: hyperopt<0.2.8,>=0.2.7; extra == "all"
51
- Requires-Dist: ray[default,tune]<2.43,>=2.10.0; extra == "all"
52
52
  Requires-Dist: pyarrow>=15.0.0; extra == "all"
53
- Requires-Dist: ray[default]<2.43,>=2.10.0; extra == "all"
53
+ Requires-Dist: ray[default]<2.45,>=2.10.0; extra == "all"
54
54
  Provides-Extra: ray
55
- Requires-Dist: ray[default]<2.43,>=2.10.0; extra == "ray"
55
+ Requires-Dist: ray[default]<2.45,>=2.10.0; extra == "ray"
56
56
  Provides-Extra: raytune
57
57
  Requires-Dist: pyarrow>=15.0.0; extra == "raytune"
58
- Requires-Dist: ray[default,tune]<2.43,>=2.10.0; extra == "raytune"
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
61
  Requires-Dist: pytest; extra == "tests"
62
- Requires-Dist: pytest-mypy; extra == "tests"
63
- Requires-Dist: flake8; extra == "tests"
64
62
  Requires-Dist: types-requests; extra == "tests"
63
+ Requires-Dist: flake8; extra == "tests"
65
64
  Requires-Dist: types-setuptools; extra == "tests"
65
+ Requires-Dist: pytest-mypy; extra == "tests"
66
66
 
67
67
 
68
68
 
@@ -1,9 +1,9 @@
1
- autogluon.core-1.2.1b20250410-py3.9-nspkg.pth,sha256=cQGwpuGPqg1GXscIwt-7PmME1OnSpD-7ixkikJ31WAY,554
1
+ autogluon.core-1.2.1b20250412-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=aSBdEF03KDWn4ct5m9aHRjrMxWi_qWVh-xemDtw_pQY,7022
3
+ autogluon/core/_setup_utils.py,sha256=G4IL_kbcDxhX9SOCpiy9Xk07qJIgj_HcsWBAP6w-5kM,7120
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=tJeST0EZCa1sWbuBSG5OURtJwcs6LfjpwjLa8Ns8AI4,91
6
+ autogluon/core/version.py,sha256=Q746j5Y7OHYIe-Dj1MKox1rGh6Gi5GKMHmhBJB3sV50,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
@@ -31,7 +31,7 @@ autogluon/core/hpo/space_converter.py,sha256=pAQpSUonRGcR8l2uyCVJCxY-bd031vlU5rU
31
31
  autogluon/core/learner/__init__.py,sha256=pAEQBcY-xq-HG2QbHdt9V4iq1RSlz6gfcxNa40abGVY,77
32
32
  autogluon/core/learner/abstract_learner.py,sha256=A4nAR-U27wInLtghQjpLdEhBgh9M_2DFz7NhoVhjuL4,5784
33
33
  autogluon/core/learning_curves/plot_curves.py,sha256=GxWeX6gvp9XlA2QwtBi9cdaxjtbY3mSngWXl-EjM8bE,3141
34
- autogluon/core/metrics/__init__.py,sha256=zbfjLVA7qcYwyTWAo54XZR7MklYgyOjaDZNCcMPyHPg,29837
34
+ autogluon/core/metrics/__init__.py,sha256=7UTGdSwuRG4Wjfenyvj9RBYMtTSGAyPpy0Q_ktF-AF8,29827
35
35
  autogluon/core/metrics/classification_metrics.py,sha256=kKbq1cBMmc_gEm3AfXBCTk5KJDcrzcg-6gmQ_wONhFU,18342
36
36
  autogluon/core/metrics/quantile_metrics.py,sha256=yjnKSMuLdee4vemXIoxitCJWf_3lvE-RXlJ4V1371w4,1393
37
37
  autogluon/core/metrics/score_func.py,sha256=RIFOZMhPKYRFXBufoe5XIY1BRDr8aqGA-2zVwuTKi0A,4684
@@ -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.1b20250410.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
93
- autogluon.core-1.2.1b20250410.dist-info/METADATA,sha256=ypewiInlg9JClew9T3s7Trybj6nZkUT2C5RTAn_2j1k,12399
94
- autogluon.core-1.2.1b20250410.dist-info/NOTICE,sha256=7nPQuj8Kp-uXsU0S5so3-2dNU5EctS5hDXvvzzehd7E,114
95
- autogluon.core-1.2.1b20250410.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
96
- autogluon.core-1.2.1b20250410.dist-info/namespace_packages.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
97
- autogluon.core-1.2.1b20250410.dist-info/top_level.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
98
- autogluon.core-1.2.1b20250410.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
99
- autogluon.core-1.2.1b20250410.dist-info/RECORD,,
92
+ autogluon.core-1.2.1b20250412.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
93
+ autogluon.core-1.2.1b20250412.dist-info/METADATA,sha256=qxry9Jk7RBUTDzjNPXtIyfiD51S3qvVLC2BWGuAQnEA,12399
94
+ autogluon.core-1.2.1b20250412.dist-info/NOTICE,sha256=7nPQuj8Kp-uXsU0S5so3-2dNU5EctS5hDXvvzzehd7E,114
95
+ autogluon.core-1.2.1b20250412.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
96
+ autogluon.core-1.2.1b20250412.dist-info/namespace_packages.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
97
+ autogluon.core-1.2.1b20250412.dist-info/top_level.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
98
+ autogluon.core-1.2.1b20250412.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
99
+ autogluon.core-1.2.1b20250412.dist-info/RECORD,,