upgini 1.2.71a3832.dev10__py3-none-any.whl → 1.2.71a3832.dev11__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.
- upgini/__about__.py +1 -1
- upgini/features_enricher.py +5 -6
- {upgini-1.2.71a3832.dev10.dist-info → upgini-1.2.71a3832.dev11.dist-info}/METADATA +1 -1
- {upgini-1.2.71a3832.dev10.dist-info → upgini-1.2.71a3832.dev11.dist-info}/RECORD +6 -6
- {upgini-1.2.71a3832.dev10.dist-info → upgini-1.2.71a3832.dev11.dist-info}/WHEEL +0 -0
- {upgini-1.2.71a3832.dev10.dist-info → upgini-1.2.71a3832.dev11.dist-info}/licenses/LICENSE +0 -0
upgini/__about__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "1.2.71a3832.
|
1
|
+
__version__ = "1.2.71a3832.dev11"
|
upgini/features_enricher.py
CHANGED
@@ -1512,10 +1512,7 @@ class FeaturesEnricher(TransformerMixin):
|
|
1512
1512
|
self.logger.info(f"Client features column on prepare data for metrics: {client_features}")
|
1513
1513
|
|
1514
1514
|
filtered_enriched_features = self.__filtered_enriched_features(
|
1515
|
-
importance_threshold,
|
1516
|
-
max_features,
|
1517
|
-
trace_id,
|
1518
|
-
validated_X
|
1515
|
+
importance_threshold, max_features, trace_id, validated_X
|
1519
1516
|
)
|
1520
1517
|
filtered_enriched_features = [c for c in filtered_enriched_features if c not in client_features]
|
1521
1518
|
|
@@ -2543,7 +2540,9 @@ if response.status_code == 200:
|
|
2543
2540
|
for c in itertools.chain(validated_Xy.columns.tolist(), generated_features)
|
2544
2541
|
if c not in self.dropped_client_feature_names_
|
2545
2542
|
]
|
2546
|
-
filtered_columns = self.__filtered_enriched_features(
|
2543
|
+
filtered_columns = self.__filtered_enriched_features(
|
2544
|
+
importance_threshold, max_features, trace_id, validated_X
|
2545
|
+
)
|
2547
2546
|
selecting_columns.extend(
|
2548
2547
|
c for c in filtered_columns if c in result.columns and c not in validated_X.columns
|
2549
2548
|
)
|
@@ -3839,7 +3838,7 @@ if response.status_code == 200:
|
|
3839
3838
|
continue
|
3840
3839
|
|
3841
3840
|
# Temporary workaround for duplicate features metadata
|
3842
|
-
if feature_meta.name in
|
3841
|
+
if feature_meta.name in importances:
|
3843
3842
|
self.logger.warning(f"WARNING: Duplicate feature metadata: {feature_meta}")
|
3844
3843
|
continue
|
3845
3844
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: upgini
|
3
|
-
Version: 1.2.71a3832.
|
3
|
+
Version: 1.2.71a3832.dev11
|
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=MPYFg9v0SOhqTxe0IfYh4m6Nh3TlmyfHR9sua58WXBM,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=oYOBaHIyPjm-EEZvJT9pU35_DW8bArEQKymZyhW8LbE,206592
|
7
7
|
upgini/http.py,sha256=RvzcShpDXssLs6ycGN8xilkKi8ZV9XGUrrk8bwdUzbw,43607
|
8
8
|
upgini/metadata.py,sha256=Yd6iW2f7Wz6vUkg5uvR4xylN16ANnCKVKqAsAkap7p8,12354
|
9
9
|
upgini/metrics.py,sha256=9AaQi7Yb22ZNnycUOAUpcP7TWF5Pfy_NGACcDj10aMs,38820
|
@@ -70,7 +70,7 @@ upgini/utils/target_utils.py,sha256=b1GzO8_gMcwXSZ2v98CY50MJJBzKbWHId_BJGybXfkM,
|
|
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.71a3832.
|
74
|
-
upgini-1.2.71a3832.
|
75
|
-
upgini-1.2.71a3832.
|
76
|
-
upgini-1.2.71a3832.
|
73
|
+
upgini-1.2.71a3832.dev11.dist-info/METADATA,sha256=QuI4m49RjcWmDJ74fXMWfNqBKPXGKDsKGhhO_wR1Kfw,49102
|
74
|
+
upgini-1.2.71a3832.dev11.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
75
|
+
upgini-1.2.71a3832.dev11.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
|
76
|
+
upgini-1.2.71a3832.dev11.dist-info/RECORD,,
|
File without changes
|
File without changes
|