upgini 1.1.299a3511.dev6__py3-none-any.whl → 1.1.299a3511.dev8__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/autofe/feature.py +9 -8
- {upgini-1.1.299a3511.dev6.dist-info → upgini-1.1.299a3511.dev8.dist-info}/METADATA +1 -1
- {upgini-1.1.299a3511.dev6.dist-info → upgini-1.1.299a3511.dev8.dist-info}/RECORD +6 -6
- {upgini-1.1.299a3511.dev6.dist-info → upgini-1.1.299a3511.dev8.dist-info}/WHEEL +0 -0
- {upgini-1.1.299a3511.dev6.dist-info → upgini-1.1.299a3511.dev8.dist-info}/licenses/LICENSE +0 -0
upgini/__about__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.1.299a3511.
|
|
1
|
+
__version__ = "1.1.299a3511.dev8"
|
upgini/autofe/feature.py
CHANGED
|
@@ -138,16 +138,17 @@ class Feature:
|
|
|
138
138
|
if self.cached_display_name is not None and cache:
|
|
139
139
|
return self.cached_display_name
|
|
140
140
|
|
|
141
|
+
should_stack_op = not isinstance(self.children[0], Column) if self.op.is_unary else False
|
|
142
|
+
prev_name = [self.children[0].get_op_display_name()] if should_stack_op else []
|
|
143
|
+
|
|
141
144
|
if self.alias:
|
|
142
145
|
components = ["f_autofe", self.alias]
|
|
143
|
-
elif shorten and not
|
|
144
|
-
prev_name = [self.children[0].get_op_display_name()] if self.op.is_unary else []
|
|
146
|
+
elif shorten and (not self.op.is_unary or should_stack_op):
|
|
145
147
|
components = ["f_autofe"] + prev_name + [self.get_op_display_name()]
|
|
146
148
|
else:
|
|
147
|
-
components =
|
|
148
|
-
"autofe"
|
|
149
|
-
|
|
150
|
-
]
|
|
149
|
+
components = (
|
|
150
|
+
["f_" + "_f_".join(self.get_columns(**kwargs))] + ["autofe"] + prev_name + [self.get_op_display_name()]
|
|
151
|
+
)
|
|
151
152
|
components.extend([str(self.display_index)] if self.display_index is not None else [])
|
|
152
153
|
display_name = "_".join(components)
|
|
153
154
|
|
|
@@ -322,10 +323,10 @@ class FeatureGroup:
|
|
|
322
323
|
lower_order_names = [ch.get_display_name() for ch in lower_order_children]
|
|
323
324
|
if any(isinstance(f, Feature) for f in lower_order_children):
|
|
324
325
|
child_data = pd.concat(
|
|
325
|
-
[data[main_column]] + [ch.calculate(data) for ch in lower_order_children],
|
|
326
|
+
[data[main_column or []]] + [ch.calculate(data) for ch in lower_order_children],
|
|
326
327
|
axis=1,
|
|
327
328
|
)
|
|
328
|
-
child_data.columns = [main_column] + lower_order_names
|
|
329
|
+
child_data.columns = ([main_column] if main_column is not None else []) + lower_order_names
|
|
329
330
|
else:
|
|
330
331
|
child_data = data[columns]
|
|
331
332
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: upgini
|
|
3
|
-
Version: 1.1.299a3511.
|
|
3
|
+
Version: 1.1.299a3511.dev8
|
|
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,4 +1,4 @@
|
|
|
1
|
-
upgini/__about__.py,sha256=
|
|
1
|
+
upgini/__about__.py,sha256=ei6RvoNtv22CaQR9tHaCSKgxiM1In9evAYXD9G5KI5Q,34
|
|
2
2
|
upgini/__init__.py,sha256=ObEtjFkIssl83qeKNMLpIQygfwK8TzztwiI43YTsAP0,353
|
|
3
3
|
upgini/ads.py,sha256=nvuRxRx5MHDMgPr9SiU-fsqRdFaBv8p4_v1oqiysKpc,2714
|
|
4
4
|
upgini/dataset.py,sha256=7TLVVhGtjgx_9yaiaIUK3kZSe_R9wg5dY0d4F5qCGM4,45636
|
|
@@ -17,7 +17,7 @@ upgini/autofe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
17
17
|
upgini/autofe/all_operands.py,sha256=3LiH9iU-ArGmYpS8FHWH7yCFx40ILfvlSXJlKIa75BQ,2542
|
|
18
18
|
upgini/autofe/binary.py,sha256=ml0MszLARZqp3UGUqTGsVjT4DD69zTisfBBEqbZ7klU,6767
|
|
19
19
|
upgini/autofe/date.py,sha256=Qq11EGLFHJxy5DQF2V1CBMtH2j4g5RpinRcw-7SobMs,8442
|
|
20
|
-
upgini/autofe/feature.py,sha256=
|
|
20
|
+
upgini/autofe/feature.py,sha256=Rs-1_6UhObbA2UMz-_QeHjV1u2hTEY0h43HQjnA2OQo,13689
|
|
21
21
|
upgini/autofe/groupby.py,sha256=4WjDzQxqpZxB79Ih4ihMMI5GDxaFqiH6ZelfV82ClT4,3091
|
|
22
22
|
upgini/autofe/operand.py,sha256=MKEsl3zxpWzRDpTkE0sNJxTu62U20sWOvEKhPjUWS6s,2915
|
|
23
23
|
upgini/autofe/unary.py,sha256=B4wp8oKnlJ0nUng-DRMKSiF8MHlhAFYbgmo9Nd_0ZaA,3777
|
|
@@ -57,7 +57,7 @@ upgini/utils/sklearn_ext.py,sha256=13jQS_k7v0aUtudXV6nGUEWjttPQzAW9AFYL5wgEz9k,4
|
|
|
57
57
|
upgini/utils/target_utils.py,sha256=Y96_PJ5cC-WsEbeqg20v9uqywDQobLoTb-xoP7S3o4E,7807
|
|
58
58
|
upgini/utils/track_info.py,sha256=G5Lu1xxakg2_TQjKZk4b5SvrHsATTXNVV3NbvWtT8k8,5663
|
|
59
59
|
upgini/utils/warning_counter.py,sha256=dIWBB4dI5XRRJZudvIlqlIYKEiwLLPcXarsZuYRt338,227
|
|
60
|
-
upgini-1.1.299a3511.
|
|
61
|
-
upgini-1.1.299a3511.
|
|
62
|
-
upgini-1.1.299a3511.
|
|
63
|
-
upgini-1.1.299a3511.
|
|
60
|
+
upgini-1.1.299a3511.dev8.dist-info/METADATA,sha256=3j3N-27UXVRN1I_0fEVzdz-ZgQ8iqVmiKbhXvy-RTj0,48230
|
|
61
|
+
upgini-1.1.299a3511.dev8.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
|
62
|
+
upgini-1.1.299a3511.dev8.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
|
|
63
|
+
upgini-1.1.299a3511.dev8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|