autogluon.tabular 1.2.1b20250112__py3-none-any.whl → 1.2.1b20250114__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/tabular/predictor/predictor.py +12 -3
- autogluon/tabular/version.py +1 -1
- {autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/METADATA +13 -13
- {autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/RECORD +11 -11
- /autogluon.tabular-1.2.1b20250112-py3.8-nspkg.pth → /autogluon.tabular-1.2.1b20250114-py3.8-nspkg.pth +0 -0
- {autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/LICENSE +0 -0
- {autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/NOTICE +0 -0
- {autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/WHEEL +0 -0
- {autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/namespace_packages.txt +0 -0
- {autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/top_level.txt +0 -0
- {autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/zip-safe +0 -0
|
@@ -1388,10 +1388,19 @@ class TabularPredictor(TabularPredictorDeprecatedMixin):
|
|
|
1388
1388
|
)
|
|
1389
1389
|
else:
|
|
1390
1390
|
# Holdout is false, use (repeated) cross-validation
|
|
1391
|
-
is_stratified = self.problem_type in [
|
|
1391
|
+
is_stratified = self.problem_type in [BINARY, MULTICLASS]
|
|
1392
|
+
is_binned = self.problem_type in [REGRESSION, QUANTILE]
|
|
1392
1393
|
self._learner._validate_groups(X=X, X_val=X_val) # Validate splits before splitting
|
|
1393
|
-
splits = CVSplitter(
|
|
1394
|
-
|
|
1394
|
+
splits = CVSplitter(
|
|
1395
|
+
n_splits=n_folds,
|
|
1396
|
+
n_repeats=n_repeats,
|
|
1397
|
+
groups=self._learner.groups,
|
|
1398
|
+
stratify=is_stratified,
|
|
1399
|
+
bin=is_binned,
|
|
1400
|
+
random_state=42,
|
|
1401
|
+
).split(
|
|
1402
|
+
X=X.drop(self.label, axis=1),
|
|
1403
|
+
y=X[self.label]
|
|
1395
1404
|
)
|
|
1396
1405
|
n_splits = len(splits)
|
|
1397
1406
|
logger.info(
|
autogluon/tabular/version.py
CHANGED
{autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: autogluon.tabular
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.1b20250114
|
|
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
|
|
@@ -39,19 +39,19 @@ Requires-Dist: scipy<1.16,>=1.5.4
|
|
|
39
39
|
Requires-Dist: pandas<2.3.0,>=2.0.0
|
|
40
40
|
Requires-Dist: scikit-learn<1.5.3,>=1.4.0
|
|
41
41
|
Requires-Dist: networkx<4,>=3.0
|
|
42
|
-
Requires-Dist: autogluon.core==1.2.
|
|
43
|
-
Requires-Dist: autogluon.features==1.2.
|
|
42
|
+
Requires-Dist: autogluon.core==1.2.1b20250114
|
|
43
|
+
Requires-Dist: autogluon.features==1.2.1b20250114
|
|
44
44
|
Provides-Extra: all
|
|
45
|
-
Requires-Dist: catboost<1.3,>=1.2; extra == "all"
|
|
46
|
-
Requires-Dist: xgboost<2.2,>=1.6; extra == "all"
|
|
47
|
-
Requires-Dist: torch<2.6,>=2.2; extra == "all"
|
|
48
|
-
Requires-Dist: autogluon.core[all]==1.2.1b20250112; extra == "all"
|
|
49
45
|
Requires-Dist: numpy<2.0.0,>=1.25; extra == "all"
|
|
50
|
-
Requires-Dist: spacy<3.8; extra == "all"
|
|
51
|
-
Requires-Dist: lightgbm<4.6,>=4.0; extra == "all"
|
|
52
46
|
Requires-Dist: fastai<2.8,>=2.3.1; extra == "all"
|
|
53
|
-
Requires-Dist:
|
|
47
|
+
Requires-Dist: lightgbm<4.6,>=4.0; extra == "all"
|
|
48
|
+
Requires-Dist: torch<2.6,>=2.2; extra == "all"
|
|
49
|
+
Requires-Dist: spacy<3.8; extra == "all"
|
|
50
|
+
Requires-Dist: xgboost<2.2,>=1.6; extra == "all"
|
|
51
|
+
Requires-Dist: autogluon.core[all]==1.2.1b20250114; extra == "all"
|
|
54
52
|
Requires-Dist: einops<0.9,>=0.7; extra == "all"
|
|
53
|
+
Requires-Dist: catboost<1.3,>=1.2; extra == "all"
|
|
54
|
+
Requires-Dist: huggingface-hub[torch]; extra == "all"
|
|
55
55
|
Provides-Extra: catboost
|
|
56
56
|
Requires-Dist: numpy<2.0.0,>=1.25; extra == "catboost"
|
|
57
57
|
Requires-Dist: catboost<1.3,>=1.2; extra == "catboost"
|
|
@@ -64,7 +64,7 @@ Requires-Dist: imodels<1.4.0,>=1.3.10; extra == "imodels"
|
|
|
64
64
|
Provides-Extra: lightgbm
|
|
65
65
|
Requires-Dist: lightgbm<4.6,>=4.0; extra == "lightgbm"
|
|
66
66
|
Provides-Extra: ray
|
|
67
|
-
Requires-Dist: autogluon.core[all]==1.2.
|
|
67
|
+
Requires-Dist: autogluon.core[all]==1.2.1b20250114; extra == "ray"
|
|
68
68
|
Provides-Extra: skex
|
|
69
69
|
Requires-Dist: scikit-learn-intelex<2025.1,>=2024.0; extra == "skex"
|
|
70
70
|
Provides-Extra: skl2onnx
|
|
@@ -74,13 +74,13 @@ Requires-Dist: onnxruntime-gpu<1.20.0,>=1.17.0; extra == "skl2onnx"
|
|
|
74
74
|
Requires-Dist: onnx<1.18.0,>=1.13.0; platform_system != "Windows" and extra == "skl2onnx"
|
|
75
75
|
Requires-Dist: onnx<1.16.2,>=1.13.0; platform_system == "Windows" and extra == "skl2onnx"
|
|
76
76
|
Provides-Extra: tabpfn
|
|
77
|
-
Requires-Dist: tabpfn<0.2,>=0.1; extra == "tabpfn"
|
|
77
|
+
Requires-Dist: tabpfn<0.2,>=0.1.11; extra == "tabpfn"
|
|
78
78
|
Provides-Extra: tabpfnmix
|
|
79
79
|
Requires-Dist: torch<2.6,>=2.2; extra == "tabpfnmix"
|
|
80
80
|
Requires-Dist: huggingface-hub[torch]; extra == "tabpfnmix"
|
|
81
81
|
Requires-Dist: einops<0.9,>=0.7; extra == "tabpfnmix"
|
|
82
82
|
Provides-Extra: tests
|
|
83
|
-
Requires-Dist: tabpfn<0.2,>=0.1; extra == "tests"
|
|
83
|
+
Requires-Dist: tabpfn<0.2,>=0.1.11; extra == "tests"
|
|
84
84
|
Requires-Dist: torch<2.6,>=2.2; extra == "tests"
|
|
85
85
|
Requires-Dist: huggingface-hub[torch]; extra == "tests"
|
|
86
86
|
Requires-Dist: einops<0.9,>=0.7; extra == "tests"
|
{autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
autogluon.tabular-1.2.
|
|
1
|
+
autogluon.tabular-1.2.1b20250114-py3.8-nspkg.pth,sha256=cQGwpuGPqg1GXscIwt-7PmME1OnSpD-7ixkikJ31WAY,554
|
|
2
2
|
autogluon/tabular/__init__.py,sha256=2OXpJCvENRHubBTYNIPpHX93WWuFZzsJBtTZbNVHVas,400
|
|
3
|
-
autogluon/tabular/version.py,sha256=
|
|
3
|
+
autogluon/tabular/version.py,sha256=Um-j8InMDDRIJ5WoL607BMYYvkzsVWU8cxXJ2aXfjbQ,90
|
|
4
4
|
autogluon/tabular/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
5
|
autogluon/tabular/configs/config_helper.py,sha256=Pb2aW9Z9w77pYKPRVZ3nBzHY3KJaiEJSJ747zZcJIVk,21132
|
|
6
6
|
autogluon/tabular/configs/feature_generator_presets.py,sha256=EV5Ym8VW15q92MwOUpTi7wZFS2QooM51fLg3RdUsn-M,1223
|
|
@@ -144,7 +144,7 @@ autogluon/tabular/models/xt/xt_model.py,sha256=gimCfMeTmhAJTy4ekCI_dbK1FluJ7EQMo
|
|
|
144
144
|
autogluon/tabular/predictor/__init__.py,sha256=zCMgjxQlWpDWnr1l1xjBCiK3rWC3N3RoD8UXBnazT74,107
|
|
145
145
|
autogluon/tabular/predictor/_deprecated_methods.py,sha256=N0QqI9wElXdSeQ9idnnJpoH2xkmv51j_vG7kDrP5QxU,3507
|
|
146
146
|
autogluon/tabular/predictor/interpretable_predictor.py,sha256=5UeKgnMFsfY65tiO3kxfHBPr03lyswLrgdtjPhI0Y7Q,6934
|
|
147
|
-
autogluon/tabular/predictor/predictor.py,sha256
|
|
147
|
+
autogluon/tabular/predictor/predictor.py,sha256=-0d5g_ADcSCwJKS6uJVif9iJD3Sq6FgcVFPrPRZ-l1Q,352445
|
|
148
148
|
autogluon/tabular/trainer/__init__.py,sha256=PW_PGL-tWoQzx3ES2S53bQEZOtsRWTYiM9QdOqsk0dI,38
|
|
149
149
|
autogluon/tabular/trainer/auto_trainer.py,sha256=ieu7Zofl93tnQC9sIcsvS9pJS__KVIsE7Nn-EIWRvT0,8718
|
|
150
150
|
autogluon/tabular/trainer/model_presets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -152,11 +152,11 @@ autogluon/tabular/trainer/model_presets/presets.py,sha256=1E-Z1FxUpyydaoEdxcTCg7
|
|
|
152
152
|
autogluon/tabular/trainer/model_presets/presets_distill.py,sha256=MnFC2GJc6RmDBNAGbsO2XMfo3PjR8cUrZoilWW8gTYQ,3295
|
|
153
153
|
autogluon/tabular/tuning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
154
|
autogluon/tabular/tuning/feature_pruner.py,sha256=9iNku8gVbYEkjuKlyITPJDicsNkoraaQOlINQq9iZlQ,6877
|
|
155
|
-
autogluon.tabular-1.2.
|
|
156
|
-
autogluon.tabular-1.2.
|
|
157
|
-
autogluon.tabular-1.2.
|
|
158
|
-
autogluon.tabular-1.2.
|
|
159
|
-
autogluon.tabular-1.2.
|
|
160
|
-
autogluon.tabular-1.2.
|
|
161
|
-
autogluon.tabular-1.2.
|
|
162
|
-
autogluon.tabular-1.2.
|
|
155
|
+
autogluon.tabular-1.2.1b20250114.dist-info/LICENSE,sha256=CeipvOyAZxBGUsFoaFqwkx54aPnIKEtm9a5u2uXxEws,10142
|
|
156
|
+
autogluon.tabular-1.2.1b20250114.dist-info/METADATA,sha256=yz9jxr4weyLJLpGkDAqM-ZSWeAnSCC_xU8w1zmbHxpE,14315
|
|
157
|
+
autogluon.tabular-1.2.1b20250114.dist-info/NOTICE,sha256=7nPQuj8Kp-uXsU0S5so3-2dNU5EctS5hDXvvzzehd7E,114
|
|
158
|
+
autogluon.tabular-1.2.1b20250114.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
|
159
|
+
autogluon.tabular-1.2.1b20250114.dist-info/namespace_packages.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
|
160
|
+
autogluon.tabular-1.2.1b20250114.dist-info/top_level.txt,sha256=giERA4R78OkJf2ijn5slgjURlhRPzfLr7waIcGkzYAo,10
|
|
161
|
+
autogluon.tabular-1.2.1b20250114.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
162
|
+
autogluon.tabular-1.2.1b20250114.dist-info/RECORD,,
|
|
File without changes
|
{autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/LICENSE
RENAMED
|
File without changes
|
{autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/NOTICE
RENAMED
|
File without changes
|
{autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{autogluon.tabular-1.2.1b20250112.dist-info → autogluon.tabular-1.2.1b20250114.dist-info}/zip-safe
RENAMED
|
File without changes
|