autogluon.core 1.2.1b20250227__py3-none-any.whl → 1.2.1b20250301__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/data/label_cleaner.py +6 -0
- autogluon/core/models/abstract/abstract_model.py +12 -0
- autogluon/core/models/dummy/dummy_model.py +4 -0
- autogluon/core/version.py +1 -1
- {autogluon.core-1.2.1b20250227.dist-info → autogluon.core-1.2.1b20250301.dist-info}/METADATA +6 -6
- {autogluon.core-1.2.1b20250227.dist-info → autogluon.core-1.2.1b20250301.dist-info}/RECORD +13 -13
- /autogluon.core-1.2.1b20250227-py3.9-nspkg.pth → /autogluon.core-1.2.1b20250301-py3.9-nspkg.pth +0 -0
- {autogluon.core-1.2.1b20250227.dist-info → autogluon.core-1.2.1b20250301.dist-info}/LICENSE +0 -0
- {autogluon.core-1.2.1b20250227.dist-info → autogluon.core-1.2.1b20250301.dist-info}/NOTICE +0 -0
- {autogluon.core-1.2.1b20250227.dist-info → autogluon.core-1.2.1b20250301.dist-info}/WHEEL +0 -0
- {autogluon.core-1.2.1b20250227.dist-info → autogluon.core-1.2.1b20250301.dist-info}/namespace_packages.txt +0 -0
- {autogluon.core-1.2.1b20250227.dist-info → autogluon.core-1.2.1b20250301.dist-info}/top_level.txt +0 -0
- {autogluon.core-1.2.1b20250227.dist-info → autogluon.core-1.2.1b20250301.dist-info}/zip-safe +0 -0
@@ -339,3 +339,9 @@ class LabelCleanerDummy(LabelCleaner):
|
|
339
339
|
|
340
340
|
def _inverse_transform(self, y: Union[Series, DataFrame]) -> Union[Series, DataFrame]:
|
341
341
|
return y
|
342
|
+
|
343
|
+
def to_transformed_dtype(self, y: Union[Series, np.ndarray, list]) -> Series:
|
344
|
+
return y
|
345
|
+
|
346
|
+
def to_original_dtype(self, y: Union[Series, np.ndarray, list]) -> Series:
|
347
|
+
return y
|
@@ -2486,6 +2486,9 @@ class AbstractModel(ModelBase):
|
|
2486
2486
|
"""
|
2487
2487
|
Dictionary of customization options related to meta properties of the model such as its name, the order it is trained, and the problem types it is valid for.
|
2488
2488
|
"""
|
2489
|
+
supported_problem_types = cls.supported_problem_types()
|
2490
|
+
if supported_problem_types is not None:
|
2491
|
+
return {"problem_types": supported_problem_types}
|
2489
2492
|
return {}
|
2490
2493
|
|
2491
2494
|
@classmethod
|
@@ -2496,6 +2499,15 @@ class AbstractModel(ModelBase):
|
|
2496
2499
|
"""
|
2497
2500
|
return {}
|
2498
2501
|
|
2502
|
+
@classmethod
|
2503
|
+
def supported_problem_types(cls) -> list[str] | None:
|
2504
|
+
"""
|
2505
|
+
Returns the list of supported problem types.
|
2506
|
+
If None is returned, then the model has not specified the supported problem types, and it is unknown which problem types are valid.
|
2507
|
+
In this case, all problem types are considered supported and the model will never be filtered out based on problem type.
|
2508
|
+
"""
|
2509
|
+
return None
|
2510
|
+
|
2499
2511
|
def _get_default_stopping_metric(self) -> Scorer:
|
2500
2512
|
"""
|
2501
2513
|
Returns the default stopping metric to use for early stopping.
|
autogluon/core/version.py
CHANGED
{autogluon.core-1.2.1b20250227.dist-info → autogluon.core-1.2.1b20250301.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.1b20250301
|
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
|
@@ -45,12 +45,12 @@ 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.1b20250301
|
49
49
|
Provides-Extra: all
|
50
|
+
Requires-Dist: hyperopt<0.2.8,>=0.2.7; extra == "all"
|
51
|
+
Requires-Dist: ray[default]<2.43,>=2.10.0; extra == "all"
|
50
52
|
Requires-Dist: pyarrow>=15.0.0; extra == "all"
|
51
53
|
Requires-Dist: ray[default,tune]<2.43,>=2.10.0; extra == "all"
|
52
|
-
Requires-Dist: ray[default]<2.43,>=2.10.0; extra == "all"
|
53
|
-
Requires-Dist: hyperopt<0.2.8,>=0.2.7; extra == "all"
|
54
54
|
Provides-Extra: ray
|
55
55
|
Requires-Dist: ray[default]<2.43,>=2.10.0; extra == "ray"
|
56
56
|
Provides-Extra: raytune
|
@@ -58,10 +58,10 @@ Requires-Dist: pyarrow>=15.0.0; extra == "raytune"
|
|
58
58
|
Requires-Dist: ray[default,tune]<2.43,>=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-requests; extra == "tests"
|
62
|
-
Requires-Dist: pytest-mypy; extra == "tests"
|
63
61
|
Requires-Dist: pytest; extra == "tests"
|
64
62
|
Requires-Dist: flake8; extra == "tests"
|
63
|
+
Requires-Dist: types-requests; extra == "tests"
|
64
|
+
Requires-Dist: pytest-mypy; extra == "tests"
|
65
65
|
Requires-Dist: types-setuptools; extra == "tests"
|
66
66
|
|
67
67
|
|
@@ -1,9 +1,9 @@
|
|
1
|
-
autogluon.core-1.2.
|
1
|
+
autogluon.core-1.2.1b20250301-py3.9-nspkg.pth,sha256=cQGwpuGPqg1GXscIwt-7PmME1OnSpD-7ixkikJ31WAY,554
|
2
2
|
autogluon/core/__init__.py,sha256=8KfvvHzXX3a4q6z43Dw1yE7VtbAoiSMaglVpKDy6Xeg,245
|
3
3
|
autogluon/core/_setup_utils.py,sha256=ikxn4zc3PNyjJJT5SsgL0dvP-6Rbq6_dItGMiZNINv4,6958
|
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=6kceKq_ABW7D8n2TxlTDuCVTTOR7a0FEMpqKYUmZerA,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
|
@@ -17,7 +17,7 @@ autogluon/core/callbacks/_early_stopping_ensemble_callback.py,sha256=lNcIa8GJ88L
|
|
17
17
|
autogluon/core/callbacks/_example_callback.py,sha256=xh4dDe4bECaj24bfLtxZysT7w4SQvcYbONw72EFzCI8,2597
|
18
18
|
autogluon/core/data/__init__.py,sha256=BJSosOhkodKk-gC2oqa6Wkkz8ZmiHwy0jZLXBhL3FYE,40
|
19
19
|
autogluon/core/data/cleaner.py,sha256=ojwr1BemM8RSmH81uBDhMIJZ2zavXyjGgkA7NKaMbV0,2803
|
20
|
-
autogluon/core/data/label_cleaner.py,sha256=
|
20
|
+
autogluon/core/data/label_cleaner.py,sha256=rgXFICs3oNlkaglnSohwjh-vcSaN2mcJTDAJAnBjSPQ,15101
|
21
21
|
autogluon/core/hpo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
22
|
autogluon/core/hpo/constants.py,sha256=vYeJNySZtldqKX3hctMM-RMT8UuVZneH3tAneiIaIZM,117
|
23
23
|
autogluon/core/hpo/exceptions.py,sha256=TvkCQZSd-TMwIqmxkOAONMuiz-HimxwHwjvGynOj5ug,44
|
@@ -40,12 +40,12 @@ 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=MaCggM7TwX5y9TyOQNV0N4cfnKmcY6kWyf2fUmDthkA,124174
|
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
|
47
47
|
autogluon/core/models/dummy/_dummy_quantile_regressor.py,sha256=i-ZW2flJ60jsMfMK24IP39Xwc55-UlBDvHmqanIf29Q,664
|
48
|
-
autogluon/core/models/dummy/dummy_model.py,sha256=
|
48
|
+
autogluon/core/models/dummy/dummy_model.py,sha256=VfIIvEQrX1n8HktUGiMIG_GeNzdDgiwysJ3M-236JxU,1599
|
49
49
|
autogluon/core/models/ensemble/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
50
|
autogluon/core/models/ensemble/bagged_ensemble_model.py,sha256=kQbJhq_UzUoOHsTX00WTEXu1Ogdme4bdLiiWhIMNUfU,77257
|
51
51
|
autogluon/core/models/ensemble/fold_fitting_strategy.py,sha256=01vzNVvE4FIFgD6YqbhK63XoUlSztnVFsrDdsoqm75U,47021
|
@@ -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.1b20250301.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
93
|
+
autogluon.core-1.2.1b20250301.dist-info/METADATA,sha256=cryYvmIvTssgnGw9XsAsnazRaDZEWJORguP_6K0foI0,12399
|
94
|
+
autogluon.core-1.2.1b20250301.dist-info/NOTICE,sha256=7nPQuj8Kp-uXsU0S5so3-2dNU5EctS5hDXvvzzehd7E,114
|
95
|
+
autogluon.core-1.2.1b20250301.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
96
|
+
autogluon.core-1.2.1b20250301.dist-info/namespace_packages.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
97
|
+
autogluon.core-1.2.1b20250301.dist-info/top_level.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
98
|
+
autogluon.core-1.2.1b20250301.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
99
|
+
autogluon.core-1.2.1b20250301.dist-info/RECORD,,
|
/autogluon.core-1.2.1b20250227-py3.9-nspkg.pth → /autogluon.core-1.2.1b20250301-py3.9-nspkg.pth
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{autogluon.core-1.2.1b20250227.dist-info → autogluon.core-1.2.1b20250301.dist-info}/top_level.txt
RENAMED
File without changes
|
{autogluon.core-1.2.1b20250227.dist-info → autogluon.core-1.2.1b20250301.dist-info}/zip-safe
RENAMED
File without changes
|