autogluon.core 1.2.1b20250115__py3-none-any.whl → 1.2.1b20250130__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/learner/abstract_learner.py +1 -1
- autogluon/core/trainer/__init__.py +2 -0
- autogluon/core/trainer/abstract_trainer.py +380 -289
- autogluon/core/version.py +2 -1
- {autogluon.core-1.2.1b20250115.dist-info → autogluon.core-1.2.1b20250130.dist-info}/METADATA +7 -5
- {autogluon.core-1.2.1b20250115.dist-info → autogluon.core-1.2.1b20250130.dist-info}/RECORD +14 -14
- /autogluon.core-1.2.1b20250115-py3.8-nspkg.pth → /autogluon.core-1.2.1b20250130-py3.9-nspkg.pth +0 -0
- {autogluon.core-1.2.1b20250115.dist-info → autogluon.core-1.2.1b20250130.dist-info}/LICENSE +0 -0
- {autogluon.core-1.2.1b20250115.dist-info → autogluon.core-1.2.1b20250130.dist-info}/NOTICE +0 -0
- {autogluon.core-1.2.1b20250115.dist-info → autogluon.core-1.2.1b20250130.dist-info}/WHEEL +0 -0
- {autogluon.core-1.2.1b20250115.dist-info → autogluon.core-1.2.1b20250130.dist-info}/namespace_packages.txt +0 -0
- {autogluon.core-1.2.1b20250115.dist-info → autogluon.core-1.2.1b20250130.dist-info}/top_level.txt +0 -0
- {autogluon.core-1.2.1b20250115.dist-info → autogluon.core-1.2.1b20250130.dist-info}/zip-safe +0 -0
autogluon/core/version.py
CHANGED
{autogluon.core-1.2.1b20250115.dist-info → autogluon.core-1.2.1b20250130.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.1b20250130
|
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
|
@@ -34,6 +34,8 @@ 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
|
+
License-File: ../LICENSE
|
38
|
+
License-File: ../NOTICE
|
37
39
|
Requires-Dist: numpy<2.1.4,>=1.25.0
|
38
40
|
Requires-Dist: scipy<1.16,>=1.5.4
|
39
41
|
Requires-Dist: scikit-learn<1.5.3,>=1.4.0
|
@@ -43,10 +45,10 @@ Requires-Dist: tqdm<5,>=4.38
|
|
43
45
|
Requires-Dist: requests
|
44
46
|
Requires-Dist: matplotlib<3.11,>=3.7.0
|
45
47
|
Requires-Dist: boto3<2,>=1.10
|
46
|
-
Requires-Dist: autogluon.common==1.2.
|
48
|
+
Requires-Dist: autogluon.common==1.2.1b20250130
|
47
49
|
Provides-Extra: all
|
48
|
-
Requires-Dist: ray[default]<2.41,>=2.10.0; extra == "all"
|
49
50
|
Requires-Dist: pyarrow>=15.0.0; extra == "all"
|
51
|
+
Requires-Dist: ray[default]<2.41,>=2.10.0; extra == "all"
|
50
52
|
Requires-Dist: hyperopt<0.2.8,>=0.2.7; extra == "all"
|
51
53
|
Requires-Dist: ray[default,tune]<2.41,>=2.10.0; extra == "all"
|
52
54
|
Provides-Extra: ray
|
@@ -56,11 +58,11 @@ Requires-Dist: pyarrow>=15.0.0; extra == "raytune"
|
|
56
58
|
Requires-Dist: ray[default,tune]<2.41,>=2.10.0; extra == "raytune"
|
57
59
|
Requires-Dist: hyperopt<0.2.8,>=0.2.7; extra == "raytune"
|
58
60
|
Provides-Extra: tests
|
61
|
+
Requires-Dist: types-setuptools; extra == "tests"
|
62
|
+
Requires-Dist: types-requests; extra == "tests"
|
59
63
|
Requires-Dist: pytest-mypy; extra == "tests"
|
60
64
|
Requires-Dist: flake8; extra == "tests"
|
61
65
|
Requires-Dist: pytest; extra == "tests"
|
62
|
-
Requires-Dist: types-requests; extra == "tests"
|
63
|
-
Requires-Dist: types-setuptools; extra == "tests"
|
64
66
|
|
65
67
|
|
66
68
|
|
@@ -1,9 +1,9 @@
|
|
1
|
-
autogluon.core-1.2.
|
1
|
+
autogluon.core-1.2.1b20250130-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=skzsDaeCi5LevWL9j0vnmApS0adtJe9u1bzXUQLaY98,6921
|
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=onZWyUgu5fGg96se5Au1iUkaP0LXAhrwgAuo6bELN9c,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
|
@@ -29,7 +29,7 @@ autogluon/core/hpo/ray_tune_scheduler_factory.py,sha256=3Q3x3WeMzhtoAbs8fNWdaTcV
|
|
29
29
|
autogluon/core/hpo/ray_tune_searcher_factory.py,sha256=sQ-P_5NVIb08wWpb_Wd-LgWe5Bhxn_rnyULDzTLQw10,1357
|
30
30
|
autogluon/core/hpo/space_converter.py,sha256=pAQpSUonRGcR8l2uyCVJCxY-bd031vlU5rU0WVA5CKU,2127
|
31
31
|
autogluon/core/learner/__init__.py,sha256=pAEQBcY-xq-HG2QbHdt9V4iq1RSlz6gfcxNa40abGVY,77
|
32
|
-
autogluon/core/learner/abstract_learner.py,sha256=
|
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
34
|
autogluon/core/metrics/__init__.py,sha256=zbfjLVA7qcYwyTWAo54XZR7MklYgyOjaDZNCcMPyHPg,29837
|
35
35
|
autogluon/core/metrics/classification_metrics.py,sha256=kKbq1cBMmc_gEm3AfXBCTk5KJDcrzcg-6gmQ_wONhFU,18342
|
@@ -72,8 +72,8 @@ autogluon/core/searcher/local_random_searcher.py,sha256=7gd-tjOBvzjDswo4Bfu2wkLY
|
|
72
72
|
autogluon/core/searcher/local_searcher.py,sha256=g-tfgSaeaK7NeRoaVKwhEUPc29USoM9-iVuTC0nlbvY,9658
|
73
73
|
autogluon/core/searcher/searcher_factory.py,sha256=OJYyq8LkOGfC1Dp17aNvToTBPZU89iQXd7incdz7PC8,2674
|
74
74
|
autogluon/core/stacked_overfitting/utils.py,sha256=LoCqb8ld3l62CPzmcw48WLpM0NoDLR8mhuhZs8QZWHc,5801
|
75
|
-
autogluon/core/trainer/__init__.py,sha256=
|
76
|
-
autogluon/core/trainer/abstract_trainer.py,sha256=
|
75
|
+
autogluon/core/trainer/__init__.py,sha256=gRzXR0m51a1gtwKbOfvwW0g27_S5XryuQdFIRiu1Q14,77
|
76
|
+
autogluon/core/trainer/abstract_trainer.py,sha256=BgofCUbeGOs_KNKiNwmpXnYIDGMtbtuXOsY76O6j_78,238701
|
77
77
|
autogluon/core/trainer/utils.py,sha256=ztcu5u9-VypY4RRDqWjNRQxK_RrJf81fyqqlyM6RLZg,994
|
78
78
|
autogluon/core/utils/__init__.py,sha256=4B6BqGd7HUPK6YCoJSzZM-9sFY6iJKKb8eCT4vB_PVA,139
|
79
79
|
autogluon/core/utils/decorators.py,sha256=5KkjaBfngohKFUg9-AvmI5qHof2Xr7O2sDDJKtfUzi8,3481
|
@@ -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.1b20250130.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
93
|
+
autogluon.core-1.2.1b20250130.dist-info/METADATA,sha256=Vkw227EvGYQepU0hFNHVLFXkx1wIVt3DdPgI_IbT3d0,12377
|
94
|
+
autogluon.core-1.2.1b20250130.dist-info/NOTICE,sha256=7nPQuj8Kp-uXsU0S5so3-2dNU5EctS5hDXvvzzehd7E,114
|
95
|
+
autogluon.core-1.2.1b20250130.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
96
|
+
autogluon.core-1.2.1b20250130.dist-info/namespace_packages.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
97
|
+
autogluon.core-1.2.1b20250130.dist-info/top_level.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
98
|
+
autogluon.core-1.2.1b20250130.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
99
|
+
autogluon.core-1.2.1b20250130.dist-info/RECORD,,
|
/autogluon.core-1.2.1b20250115-py3.8-nspkg.pth → /autogluon.core-1.2.1b20250130-py3.9-nspkg.pth
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{autogluon.core-1.2.1b20250115.dist-info → autogluon.core-1.2.1b20250130.dist-info}/top_level.txt
RENAMED
File without changes
|
{autogluon.core-1.2.1b20250115.dist-info → autogluon.core-1.2.1b20250130.dist-info}/zip-safe
RENAMED
File without changes
|