autogluon.core 1.2.1b20250306__py3-none-any.whl → 1.2.1b20250308__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/models/ensemble/bagged_ensemble_model.py +2 -1
- autogluon/core/version.py +1 -1
- {autogluon.core-1.2.1b20250306.dist-info → autogluon.core-1.2.1b20250308.dist-info}/METADATA +6 -6
- {autogluon.core-1.2.1b20250306.dist-info → autogluon.core-1.2.1b20250308.dist-info}/RECORD +11 -11
- /autogluon.core-1.2.1b20250306-py3.9-nspkg.pth → /autogluon.core-1.2.1b20250308-py3.9-nspkg.pth +0 -0
- {autogluon.core-1.2.1b20250306.dist-info → autogluon.core-1.2.1b20250308.dist-info}/LICENSE +0 -0
- {autogluon.core-1.2.1b20250306.dist-info → autogluon.core-1.2.1b20250308.dist-info}/NOTICE +0 -0
- {autogluon.core-1.2.1b20250306.dist-info → autogluon.core-1.2.1b20250308.dist-info}/WHEEL +0 -0
- {autogluon.core-1.2.1b20250306.dist-info → autogluon.core-1.2.1b20250308.dist-info}/namespace_packages.txt +0 -0
- {autogluon.core-1.2.1b20250306.dist-info → autogluon.core-1.2.1b20250308.dist-info}/top_level.txt +0 -0
- {autogluon.core-1.2.1b20250306.dist-info → autogluon.core-1.2.1b20250308.dist-info}/zip-safe +0 -0
@@ -620,7 +620,8 @@ class BaggedEnsembleModel(AbstractModel):
|
|
620
620
|
# FIXME: Consider use_child_oof with pseudo labels! Need to keep track of indices
|
621
621
|
logger.log(15, f"{len(X_pseudo)} extra rows of pseudolabeled data added to training set for {self.name}")
|
622
622
|
assert_pseudo_column_match(X=X, X_pseudo=X_pseudo)
|
623
|
-
|
623
|
+
# Needs .astype(X.dtypes) because pd.concat will convert categorical features to int/float unexpectedly. Need to convert them back to original.
|
624
|
+
X_fit = pd.concat([X, X_pseudo], axis=0, ignore_index=True).astype(X.dtypes)
|
624
625
|
y_fit = pd.concat([y, y_pseudo], axis=0, ignore_index=True)
|
625
626
|
else:
|
626
627
|
X_fit = X
|
autogluon/core/version.py
CHANGED
{autogluon.core-1.2.1b20250306.dist-info → autogluon.core-1.2.1b20250308.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.1b20250308
|
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,11 +45,11 @@ 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.1b20250308
|
49
49
|
Provides-Extra: all
|
50
|
-
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
50
|
Requires-Dist: ray[default]<2.43,>=2.10.0; extra == "all"
|
51
|
+
Requires-Dist: ray[default,tune]<2.43,>=2.10.0; extra == "all"
|
52
|
+
Requires-Dist: hyperopt<0.2.8,>=0.2.7; extra == "all"
|
53
53
|
Requires-Dist: pyarrow>=15.0.0; extra == "all"
|
54
54
|
Provides-Extra: ray
|
55
55
|
Requires-Dist: ray[default]<2.43,>=2.10.0; extra == "ray"
|
@@ -58,11 +58,11 @@ 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: pytest-mypy; extra == "tests"
|
61
62
|
Requires-Dist: pytest; extra == "tests"
|
62
|
-
Requires-Dist: types-setuptools; extra == "tests"
|
63
63
|
Requires-Dist: types-requests; extra == "tests"
|
64
64
|
Requires-Dist: flake8; extra == "tests"
|
65
|
-
Requires-Dist:
|
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.1b20250308-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=hEltA28xjQZluR9kZu7xMHB0PNrfraZqGe-bAnGshFE,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
|
@@ -47,7 +47,7 @@ autogluon/core/models/dummy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
47
47
|
autogluon/core/models/dummy/_dummy_quantile_regressor.py,sha256=i-ZW2flJ60jsMfMK24IP39Xwc55-UlBDvHmqanIf29Q,664
|
48
48
|
autogluon/core/models/dummy/dummy_model.py,sha256=oCAL0HnPJEREPtgnS_N8YtCdn99yXW0zD8EBEJJToNA,1635
|
49
49
|
autogluon/core/models/ensemble/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
|
-
autogluon/core/models/ensemble/bagged_ensemble_model.py,sha256=
|
50
|
+
autogluon/core/models/ensemble/bagged_ensemble_model.py,sha256=bR-T5mnZZRgRF_XRar_5B9vAdGR9-V6KShg3xq76xXg,77430
|
51
51
|
autogluon/core/models/ensemble/fold_fitting_strategy.py,sha256=01vzNVvE4FIFgD6YqbhK63XoUlSztnVFsrDdsoqm75U,47021
|
52
52
|
autogluon/core/models/ensemble/ray_parallel_fold_fitting_strategy.py,sha256=8RASa-eV6n9kUgbqQHNt7k4IrvuB9NdrunIMLYOLwgA,2068
|
53
53
|
autogluon/core/models/ensemble/stacker_ensemble_model.py,sha256=oGgn0oxu1jzygcCHKBvlMZLbKrDAIgcrOMXFbSTNTVM,18059
|
@@ -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.1b20250308.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
93
|
+
autogluon.core-1.2.1b20250308.dist-info/METADATA,sha256=wbyqy6pdn10wA-EbKov-yb3Z-HRjxXruJQ9krNUGtlQ,12399
|
94
|
+
autogluon.core-1.2.1b20250308.dist-info/NOTICE,sha256=7nPQuj8Kp-uXsU0S5so3-2dNU5EctS5hDXvvzzehd7E,114
|
95
|
+
autogluon.core-1.2.1b20250308.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
96
|
+
autogluon.core-1.2.1b20250308.dist-info/namespace_packages.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
97
|
+
autogluon.core-1.2.1b20250308.dist-info/top_level.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
98
|
+
autogluon.core-1.2.1b20250308.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
99
|
+
autogluon.core-1.2.1b20250308.dist-info/RECORD,,
|
/autogluon.core-1.2.1b20250306-py3.9-nspkg.pth → /autogluon.core-1.2.1b20250308-py3.9-nspkg.pth
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{autogluon.core-1.2.1b20250306.dist-info → autogluon.core-1.2.1b20250308.dist-info}/top_level.txt
RENAMED
File without changes
|
{autogluon.core-1.2.1b20250306.dist-info → autogluon.core-1.2.1b20250308.dist-info}/zip-safe
RENAMED
File without changes
|