upgini 1.2.81a3832.dev14__py3-none-any.whl → 1.2.81a3832.dev16__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.
Potentially problematic release.
This version of upgini might be problematic. Click here for more details.
- upgini/__about__.py +1 -1
- upgini/autofe/binary.py +2 -2
- upgini/features_enricher.py +4 -1
- upgini/metadata.py +1 -1
- upgini/metrics.py +0 -9
- {upgini-1.2.81a3832.dev14.dist-info → upgini-1.2.81a3832.dev16.dist-info}/METADATA +1 -1
- {upgini-1.2.81a3832.dev14.dist-info → upgini-1.2.81a3832.dev16.dist-info}/RECORD +9 -9
- {upgini-1.2.81a3832.dev14.dist-info → upgini-1.2.81a3832.dev16.dist-info}/WHEEL +0 -0
- {upgini-1.2.81a3832.dev14.dist-info → upgini-1.2.81a3832.dev16.dist-info}/licenses/LICENSE +0 -0
upgini/__about__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "1.2.81a3832.
|
1
|
+
__version__ = "1.2.81a3832.dev16"
|
upgini/autofe/binary.py
CHANGED
@@ -146,8 +146,8 @@ class Distance(PandasOperator):
|
|
146
146
|
|
147
147
|
# row-wise dot product, handling None values
|
148
148
|
def __dot(self, left: pd.Series, right: pd.Series) -> pd.Series:
|
149
|
-
left = left.apply(lambda x: np.array(x))
|
150
|
-
right = right.apply(lambda x: np.array(x))
|
149
|
+
left = left.apply(lambda x: np.array(x).astype(np.float64))
|
150
|
+
right = right.apply(lambda x: np.array(x).astype(np.float64))
|
151
151
|
res = (left.dropna() * right.dropna()).apply(np.sum)
|
152
152
|
res = res.reindex(left.index.union(right.index))
|
153
153
|
return res
|
upgini/features_enricher.py
CHANGED
@@ -3937,7 +3937,10 @@ if response.status_code == 200:
|
|
3937
3937
|
if feature_meta.name in original_names_dict.keys():
|
3938
3938
|
feature_meta.name = original_names_dict[feature_meta.name]
|
3939
3939
|
|
3940
|
-
|
3940
|
+
is_client_feature = feature_meta.name in df.columns
|
3941
|
+
|
3942
|
+
# Show and update shap values for client features only if select_features is True
|
3943
|
+
if updated_shaps is not None and (not is_client_feature or self.fit_select_features):
|
3941
3944
|
updating_shap = updated_shaps.get(feature_meta.name)
|
3942
3945
|
if updating_shap is None:
|
3943
3946
|
if feature_meta.shap_value != 0.0:
|
upgini/metadata.py
CHANGED
upgini/metrics.py
CHANGED
@@ -91,17 +91,8 @@ CATBOOST_MULTICLASS_PARAMS = {
|
|
91
91
|
|
92
92
|
LIGHTGBM_REGRESSION_PARAMS = {
|
93
93
|
"random_state": DEFAULT_RANDOM_STATE,
|
94
|
-
"min_gain_to_split": 0.001,
|
95
94
|
"n_estimators": 275,
|
96
|
-
"max_depth": 5,
|
97
|
-
"max_cat_threshold": 80,
|
98
|
-
"min_data_per_group": 25,
|
99
|
-
"cat_l2": 10,
|
100
|
-
"cat_smooth": 12,
|
101
|
-
"learning_rate": 0.05,
|
102
95
|
"feature_fraction": 1.0,
|
103
|
-
"min_sum_hessian_in_leaf": 0.01,
|
104
|
-
"objective": "huber",
|
105
96
|
"deterministic": "true",
|
106
97
|
"verbosity": -1,
|
107
98
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: upgini
|
3
|
-
Version: 1.2.81a3832.
|
3
|
+
Version: 1.2.81a3832.dev16
|
4
4
|
Summary: Intelligent data search & enrichment for Machine Learning
|
5
5
|
Project-URL: Bug Reports, https://github.com/upgini/upgini/issues
|
6
6
|
Project-URL: Homepage, https://upgini.com/
|
@@ -1,12 +1,12 @@
|
|
1
|
-
upgini/__about__.py,sha256=
|
1
|
+
upgini/__about__.py,sha256=Wtqf6woIkVhwgW_fiUm7UjHlXkCw_59KumFHUwoY2rU,34
|
2
2
|
upgini/__init__.py,sha256=LXSfTNU0HnlOkE69VCxkgIKDhWP-JFo_eBQ71OxTr5Y,261
|
3
3
|
upgini/ads.py,sha256=nvuRxRx5MHDMgPr9SiU-fsqRdFaBv8p4_v1oqiysKpc,2714
|
4
4
|
upgini/dataset.py,sha256=aspri7ZAgwkNNUiIgQ1GRXvw8XQii3F4RfNXSrF4wrw,35365
|
5
5
|
upgini/errors.py,sha256=2b_Wbo0OYhLUbrZqdLIx5jBnAsiD1Mcenh-VjR4HCTw,950
|
6
|
-
upgini/features_enricher.py,sha256=
|
6
|
+
upgini/features_enricher.py,sha256=AGF2u2mbFL4KIdqZECiSkGuMhfluamJOveqhYnkKfQM,212614
|
7
7
|
upgini/http.py,sha256=AfaJ3c8z_tK2hZFEehNybDKE0mp1tYcyAP_l0_p8bLQ,43933
|
8
|
-
upgini/metadata.py,sha256=
|
9
|
-
upgini/metrics.py,sha256=
|
8
|
+
upgini/metadata.py,sha256=zt_9k0iQbWXuiRZcel4ORNPdQKt6Ou69ucZD_E1Q46o,12341
|
9
|
+
upgini/metrics.py,sha256=nVt4zJKt7y1xD1ga9698QKlJQfXv93lARjUMC1E1_U4,43163
|
10
10
|
upgini/search_task.py,sha256=Q5HjBpLIB3OCxAD1zNv5yQ3ZNJx696WCK_-H35_y7Rs,17912
|
11
11
|
upgini/spinner.py,sha256=4iMd-eIe_BnkqFEMIliULTbj6rNI2HkN_VJ4qYe0cUc,1118
|
12
12
|
upgini/version_validator.py,sha256=DvbaAvuYFoJqYt0fitpsk6Xcv-H1BYDJYHUMxaKSH_Y,1509
|
@@ -14,7 +14,7 @@ upgini/ads_management/__init__.py,sha256=qzyisOToVRP-tquAJD1PblZhNtMrOB8FiyF9Jvf
|
|
14
14
|
upgini/ads_management/ads_manager.py,sha256=igVbN2jz80Umb2BUJixmJVj-zx8unoKpecVo-R-nGdw,2648
|
15
15
|
upgini/autofe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
16
|
upgini/autofe/all_operators.py,sha256=rdjF5eaE4bC6Q4eu_el5Z7ekYt8DjOFermz2bePPbUc,333
|
17
|
-
upgini/autofe/binary.py,sha256=
|
17
|
+
upgini/autofe/binary.py,sha256=oOEECc4nRzZN2tYaiqx8F2XHnfWpk1bVvb7ZkZJ0lO8,7709
|
18
18
|
upgini/autofe/date.py,sha256=MM1S-6imNSzCDOhbNnmsc_bwSqUWBcS8vWAdHF8j1kY,11134
|
19
19
|
upgini/autofe/feature.py,sha256=G_YgnsauIoaMgByx9JXDPiKc4nqs0pwWZUfvoIGMKxY,15305
|
20
20
|
upgini/autofe/groupby.py,sha256=IYmQV9uoCdRcpkeWZj_kI3ObzoNCNx3ff3h8sTL01tk,3603
|
@@ -70,7 +70,7 @@ upgini/utils/target_utils.py,sha256=LRN840dzx78-wg7ftdxAkp2c1eu8-JDvkACiRThm4HE,
|
|
70
70
|
upgini/utils/track_info.py,sha256=G5Lu1xxakg2_TQjKZk4b5SvrHsATTXNVV3NbvWtT8k8,5663
|
71
71
|
upgini/utils/ts_utils.py,sha256=26vhC0pN7vLXK6R09EEkMK3Lwb9IVPH7LRdqFIQ3kPs,1383
|
72
72
|
upgini/utils/warning_counter.py,sha256=-GRY8EUggEBKODPSuXAkHn9KnEQwAORC0mmz_tim-PM,254
|
73
|
-
upgini-1.2.81a3832.
|
74
|
-
upgini-1.2.81a3832.
|
75
|
-
upgini-1.2.81a3832.
|
76
|
-
upgini-1.2.81a3832.
|
73
|
+
upgini-1.2.81a3832.dev16.dist-info/METADATA,sha256=jE8_Lb2S-QjU7tcbGPQcoxiCCu-AcuMyHpoxW3KEvv0,49173
|
74
|
+
upgini-1.2.81a3832.dev16.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
75
|
+
upgini-1.2.81a3832.dev16.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
|
76
|
+
upgini-1.2.81a3832.dev16.dist-info/RECORD,,
|
File without changes
|
File without changes
|