autogluon 1.3.2b20250723__tar.gz → 1.4.0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: autogluon
3
- Version: 1.3.2b20250723
3
+ Version: 1.4.0
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
@@ -10,7 +10,7 @@ Project-URL: Bug Reports, https://github.com/autogluon/autogluon/issues
10
10
  Project-URL: Source, https://github.com/autogluon/autogluon/
11
11
  Project-URL: Contribute!, https://github.com/autogluon/autogluon/blob/master/CONTRIBUTING.md
12
12
  Platform: UNKNOWN
13
- Classifier: Development Status :: 4 - Beta
13
+ Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Education
15
15
  Classifier: Intended Audience :: Developers
16
16
  Classifier: Intended Audience :: Science/Research
@@ -34,6 +34,7 @@ Classifier: Topic :: Scientific/Engineering :: Information Analysis
34
34
  Classifier: Topic :: Scientific/Engineering :: Image Recognition
35
35
  Requires-Python: >=3.9, <3.13
36
36
  Description-Content-Type: text/markdown
37
+ Provides-Extra: tabarena
37
38
  License-File: ../LICENSE
38
39
  License-File: ../NOTICE
39
40
 
@@ -79,7 +80,7 @@ Build accurate end-to-end ML models in just 3 lines of code!
79
80
 
80
81
  ```python
81
82
  from autogluon.tabular import TabularPredictor
82
- predictor = TabularPredictor(label="class").fit("train.csv")
83
+ predictor = TabularPredictor(label="class").fit("train.csv", presets="best")
83
84
  predictions = predictor.predict("test.csv")
84
85
  ```
85
86
 
@@ -30,10 +30,14 @@ install_requires = [
30
30
 
31
31
  install_requires = ag.get_dependency_version_ranges(install_requires)
32
32
 
33
+ extras_require = {
34
+ "tabarena": [f'autogluon.tabular[tabarena]=={version}']
35
+ }
33
36
  if __name__ == '__main__':
34
37
  ag.create_version_file(version=version, submodule=submodule)
35
38
  setup_args = ag.default_setup_args(version=version, submodule=submodule)
36
39
  setup(
37
40
  install_requires=install_requires,
41
+ extras_require=extras_require,
38
42
  **setup_args,
39
43
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: autogluon
3
- Version: 1.3.2b20250723
3
+ Version: 1.4.0
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
@@ -10,7 +10,7 @@ Project-URL: Bug Reports, https://github.com/autogluon/autogluon/issues
10
10
  Project-URL: Source, https://github.com/autogluon/autogluon/
11
11
  Project-URL: Contribute!, https://github.com/autogluon/autogluon/blob/master/CONTRIBUTING.md
12
12
  Platform: UNKNOWN
13
- Classifier: Development Status :: 4 - Beta
13
+ Classifier: Development Status :: 5 - Production/Stable
14
14
  Classifier: Intended Audience :: Education
15
15
  Classifier: Intended Audience :: Developers
16
16
  Classifier: Intended Audience :: Science/Research
@@ -34,6 +34,7 @@ Classifier: Topic :: Scientific/Engineering :: Information Analysis
34
34
  Classifier: Topic :: Scientific/Engineering :: Image Recognition
35
35
  Requires-Python: >=3.9, <3.13
36
36
  Description-Content-Type: text/markdown
37
+ Provides-Extra: tabarena
37
38
  License-File: ../LICENSE
38
39
  License-File: ../NOTICE
39
40
 
@@ -79,7 +80,7 @@ Build accurate end-to-end ML models in just 3 lines of code!
79
80
 
80
81
  ```python
81
82
  from autogluon.tabular import TabularPredictor
82
- predictor = TabularPredictor(label="class").fit("train.csv")
83
+ predictor = TabularPredictor(label="class").fit("train.csv", presets="best")
83
84
  predictions = predictor.predict("test.csv")
84
85
  ```
85
86
 
@@ -0,0 +1,8 @@
1
+ autogluon.core[all]==1.4.0
2
+ autogluon.features==1.4.0
3
+ autogluon.tabular[all]==1.4.0
4
+ autogluon.multimodal==1.4.0
5
+ autogluon.timeseries[all]==1.4.0
6
+
7
+ [tabarena]
8
+ autogluon.tabular[tabarena]==1.4.0
@@ -1,5 +0,0 @@
1
- autogluon.core[all]==1.3.2b20250723
2
- autogluon.features==1.3.2b20250723
3
- autogluon.tabular[all]==1.3.2b20250723
4
- autogluon.multimodal==1.3.2b20250723
5
- autogluon.timeseries[all]==1.3.2b20250723
File without changes