upgini 1.2.38a3769.dev5__py3-none-any.whl → 1.2.38a3769.dev7__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/features_enricher.py +10 -6
- {upgini-1.2.38a3769.dev5.dist-info → upgini-1.2.38a3769.dev7.dist-info}/METADATA +1 -1
- {upgini-1.2.38a3769.dev5.dist-info → upgini-1.2.38a3769.dev7.dist-info}/RECORD +6 -6
- {upgini-1.2.38a3769.dev5.dist-info → upgini-1.2.38a3769.dev7.dist-info}/WHEEL +0 -0
- {upgini-1.2.38a3769.dev5.dist-info → upgini-1.2.38a3769.dev7.dist-info}/licenses/LICENSE +0 -0
upgini/__about__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.2.38a3769.
|
|
1
|
+
__version__ = "1.2.38a3769.dev7"
|
upgini/features_enricher.py
CHANGED
|
@@ -2300,7 +2300,7 @@ class FeaturesEnricher(TransformerMixin):
|
|
|
2300
2300
|
meaning_types=meaning_types,
|
|
2301
2301
|
search_keys=combined_search_keys,
|
|
2302
2302
|
unnest_search_keys=unnest_search_keys,
|
|
2303
|
-
id_columns=self.
|
|
2303
|
+
id_columns=self.__get_renamed_id_columns(),
|
|
2304
2304
|
date_format=self.date_format,
|
|
2305
2305
|
rest_client=self.rest_client,
|
|
2306
2306
|
logger=self.logger,
|
|
@@ -2658,10 +2658,10 @@ class FeaturesEnricher(TransformerMixin):
|
|
|
2658
2658
|
self.__adjust_cv(df)
|
|
2659
2659
|
|
|
2660
2660
|
if self.id_columns is not None and self.cv is not None and self.cv.is_time_series():
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2661
|
+
id_columns = self.__get_renamed_id_columns()
|
|
2662
|
+
if id_columns:
|
|
2663
|
+
self.fit_search_keys.update({col: SearchKey.CUSTOM_KEY for col in id_columns})
|
|
2664
|
+
self.runtime_parameters.properties["id_columns"] = ",".join(id_columns)
|
|
2665
2665
|
|
|
2666
2666
|
df, fintech_warnings = remove_fintech_duplicates(
|
|
2667
2667
|
df, self.fit_search_keys, date_format=self.date_format, logger=self.logger, bundle=self.bundle
|
|
@@ -2785,7 +2785,7 @@ class FeaturesEnricher(TransformerMixin):
|
|
|
2785
2785
|
unnest_search_keys=unnest_search_keys,
|
|
2786
2786
|
model_task_type=self.model_task_type,
|
|
2787
2787
|
cv_type=self.cv,
|
|
2788
|
-
id_columns=self.
|
|
2788
|
+
id_columns=self.__get_renamed_id_columns(),
|
|
2789
2789
|
date_format=self.date_format,
|
|
2790
2790
|
random_state=self.random_state,
|
|
2791
2791
|
rest_client=self.rest_client,
|
|
@@ -2945,6 +2945,10 @@ class FeaturesEnricher(TransformerMixin):
|
|
|
2945
2945
|
def __should_add_date_column(self):
|
|
2946
2946
|
return self.add_date_if_missing or (self.cv is not None and self.cv.is_time_series())
|
|
2947
2947
|
|
|
2948
|
+
def __get_renamed_id_columns(self):
|
|
2949
|
+
reverse_renaming = {v: k for k, v in self.fit_columns_renaming.items()}
|
|
2950
|
+
return None if self.id_columns is None else [reverse_renaming.get(c) or c for c in self.id_columns]
|
|
2951
|
+
|
|
2948
2952
|
def __adjust_cv(self, df: pd.DataFrame):
|
|
2949
2953
|
date_column = SearchKey.find_key(self.fit_search_keys, [SearchKey.DATE, SearchKey.DATETIME])
|
|
2950
2954
|
# Check Multivariate time series
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: upgini
|
|
3
|
-
Version: 1.2.38a3769.
|
|
3
|
+
Version: 1.2.38a3769.dev7
|
|
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,9 +1,9 @@
|
|
|
1
|
-
upgini/__about__.py,sha256=
|
|
1
|
+
upgini/__about__.py,sha256=bcyUOvI2q26q0uef1KOpZjQh_D3XRGPWWghf1iV5VZU,33
|
|
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=-3FeDMADnHxGb70rKFY_U96NCQO-TEUAXFicFl25CtY,33222
|
|
5
5
|
upgini/errors.py,sha256=2b_Wbo0OYhLUbrZqdLIx5jBnAsiD1Mcenh-VjR4HCTw,950
|
|
6
|
-
upgini/features_enricher.py,sha256=
|
|
6
|
+
upgini/features_enricher.py,sha256=ZRI7_wIp98Von-vIVsTxUURPS_vAYWcDcPFoPpcOFM0,196180
|
|
7
7
|
upgini/http.py,sha256=plZGTGoi1h2edd8Cnjt4eYB8t4NbBGnZz7DtPTByiNc,42885
|
|
8
8
|
upgini/lazy_import.py,sha256=74gQ8JuA48BGRLxAo7lNHNKY2D2emMxrUxKGdxVGhuY,1012
|
|
9
9
|
upgini/metadata.py,sha256=-ibqiNjD7dTagqg53FoEJNEqvAYbwgfyn9PGTRQ_YKU,12054
|
|
@@ -59,7 +59,7 @@ upgini/utils/sklearn_ext.py,sha256=13jQS_k7v0aUtudXV6nGUEWjttPQzAW9AFYL5wgEz9k,4
|
|
|
59
59
|
upgini/utils/target_utils.py,sha256=RlpKGss9kMibVSlA8iZuO_qxmyeplqzn7X8g6hiGGGs,14341
|
|
60
60
|
upgini/utils/track_info.py,sha256=G5Lu1xxakg2_TQjKZk4b5SvrHsATTXNVV3NbvWtT8k8,5663
|
|
61
61
|
upgini/utils/warning_counter.py,sha256=-GRY8EUggEBKODPSuXAkHn9KnEQwAORC0mmz_tim-PM,254
|
|
62
|
-
upgini-1.2.38a3769.
|
|
63
|
-
upgini-1.2.38a3769.
|
|
64
|
-
upgini-1.2.38a3769.
|
|
65
|
-
upgini-1.2.38a3769.
|
|
62
|
+
upgini-1.2.38a3769.dev7.dist-info/METADATA,sha256=FkkN0XhQLsNs1Y6_WyFdo_5iGhqxbw9YC8ba86ljSPw,48604
|
|
63
|
+
upgini-1.2.38a3769.dev7.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
|
64
|
+
upgini-1.2.38a3769.dev7.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
|
|
65
|
+
upgini-1.2.38a3769.dev7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|