upgini 1.1.296a3511.dev4__py3-none-any.whl → 1.1.296a3511.dev5__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/date.py +12 -2
- upgini/autofe/feature.py +7 -3
- {upgini-1.1.296a3511.dev4.dist-info → upgini-1.1.296a3511.dev5.dist-info}/METADATA +1 -1
- {upgini-1.1.296a3511.dev4.dist-info → upgini-1.1.296a3511.dev5.dist-info}/RECORD +7 -7
- {upgini-1.1.296a3511.dev4.dist-info → upgini-1.1.296a3511.dev5.dist-info}/WHEEL +0 -0
- {upgini-1.1.296a3511.dev4.dist-info → upgini-1.1.296a3511.dev5.dist-info}/licenses/LICENSE +0 -0
upgini/__about__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.1.296a3511.
|
|
1
|
+
__version__ = "1.1.296a3511.dev5"
|
upgini/autofe/date.py
CHANGED
|
@@ -41,6 +41,8 @@ class DateDiff(PandasOperand, DateDiffMixin):
|
|
|
41
41
|
is_binary = True
|
|
42
42
|
has_symmetry_importance = True
|
|
43
43
|
|
|
44
|
+
replace_negative: bool = False
|
|
45
|
+
|
|
44
46
|
def get_params(self) -> Dict[str, Optional[str]]:
|
|
45
47
|
res = super().get_params()
|
|
46
48
|
res.update(
|
|
@@ -48,6 +50,7 @@ class DateDiff(PandasOperand, DateDiffMixin):
|
|
|
48
50
|
"diff_unit": self.diff_unit,
|
|
49
51
|
"left_unit": self.left_unit,
|
|
50
52
|
"right_unit": self.right_unit,
|
|
53
|
+
"replace_negative": self.replace_negative,
|
|
51
54
|
}
|
|
52
55
|
)
|
|
53
56
|
return res
|
|
@@ -59,7 +62,8 @@ class DateDiff(PandasOperand, DateDiffMixin):
|
|
|
59
62
|
return self.__replace_negative(diff)
|
|
60
63
|
|
|
61
64
|
def __replace_negative(self, x: Union[pd.DataFrame, pd.Series]):
|
|
62
|
-
|
|
65
|
+
if self.replace_negative:
|
|
66
|
+
x[x < 0] = None
|
|
63
67
|
return x
|
|
64
68
|
|
|
65
69
|
|
|
@@ -99,13 +103,19 @@ _ext_aggregations = {"nunique": (lambda x: len(np.unique(x)), 0), "count": (len,
|
|
|
99
103
|
class DateListDiff(PandasOperand, DateDiffMixin):
|
|
100
104
|
is_binary = True
|
|
101
105
|
has_symmetry_importance = True
|
|
106
|
+
|
|
102
107
|
aggregation: str
|
|
108
|
+
replace_negative: bool = False
|
|
103
109
|
|
|
104
110
|
def get_params(self) -> Dict[str, Optional[str]]:
|
|
105
111
|
res = super().get_params()
|
|
106
112
|
res.update(
|
|
107
113
|
{
|
|
108
114
|
"aggregation": self.aggregation,
|
|
115
|
+
"diff_unit": self.diff_unit,
|
|
116
|
+
"left_unit": self.left_unit,
|
|
117
|
+
"right_unit": self.right_unit,
|
|
118
|
+
"replace_negative": self.replace_negative,
|
|
109
119
|
}
|
|
110
120
|
)
|
|
111
121
|
return res
|
|
@@ -123,7 +133,7 @@ class DateListDiff(PandasOperand, DateDiffMixin):
|
|
|
123
133
|
|
|
124
134
|
def _diff(self, x: TimedeltaArray):
|
|
125
135
|
x = self._convert_diff_to_unit(x)
|
|
126
|
-
return x[x > 0]
|
|
136
|
+
return x[x > 0] if self.replace_negative else x
|
|
127
137
|
|
|
128
138
|
def _agg(self, x):
|
|
129
139
|
method = getattr(np, self.aggregation, None)
|
upgini/autofe/feature.py
CHANGED
|
@@ -125,18 +125,22 @@ class Feature:
|
|
|
125
125
|
for child in self.children:
|
|
126
126
|
child.delete_data()
|
|
127
127
|
|
|
128
|
+
def get_op_display_name(self) -> str:
|
|
129
|
+
return self.op.alias or self.op.name.lower()
|
|
130
|
+
|
|
128
131
|
def get_display_name(self, cache: bool = True, shorten: bool = False, **kwargs) -> str:
|
|
129
132
|
if self.cached_display_name is not None and cache:
|
|
130
133
|
return self.cached_display_name
|
|
131
134
|
|
|
132
135
|
if self.alias:
|
|
133
136
|
components = ["f_autofe", self.alias]
|
|
134
|
-
elif shorten and not self.op.is_unary:
|
|
135
|
-
|
|
137
|
+
elif shorten and not (self.op.is_unary and all(isinstance(c, Column) for c in self.children)):
|
|
138
|
+
prev_name = [self.children[0].get_op_display_name()] if self.op.is_unary else []
|
|
139
|
+
components = ["f_autofe"] + prev_name + [self.get_op_display_name()]
|
|
136
140
|
else:
|
|
137
141
|
components = ["f_" + "_f_".join(self.get_columns(**kwargs))] + [
|
|
138
142
|
"autofe",
|
|
139
|
-
self.
|
|
143
|
+
self.get_op_display_name(),
|
|
140
144
|
]
|
|
141
145
|
components.extend([str(self.display_index)] if self.display_index is not None else [])
|
|
142
146
|
display_name = "_".join(components)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: upgini
|
|
3
|
-
Version: 1.1.296a3511.
|
|
3
|
+
Version: 1.1.296a3511.dev5
|
|
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=SpaPMjgutjbwO95CH0W9s1DzcXLs8b1RAjY6md0F7Bg,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
|
|
@@ -16,8 +16,8 @@ upgini/ads_management/ads_manager.py,sha256=igVbN2jz80Umb2BUJixmJVj-zx8unoKpecVo
|
|
|
16
16
|
upgini/autofe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
upgini/autofe/all_operands.py,sha256=-6gzp6nWBfzKmRRSvyMYUkubH7IwxL3Lrh9wVD85Baw,2457
|
|
18
18
|
upgini/autofe/binary.py,sha256=ml0MszLARZqp3UGUqTGsVjT4DD69zTisfBBEqbZ7klU,6767
|
|
19
|
-
upgini/autofe/date.py,sha256=
|
|
20
|
-
upgini/autofe/feature.py,sha256=
|
|
19
|
+
upgini/autofe/date.py,sha256=gW0UJ_5ykYPNNnwc3cr_FCzO6BTvWLCtHxl8ij33VKg,7681
|
|
20
|
+
upgini/autofe/feature.py,sha256=OWwIiwB948WxSl6GsLob9Hg8ky_93WMQPMgrIC7UsAA,12725
|
|
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.296a3511.
|
|
61
|
-
upgini-1.1.296a3511.
|
|
62
|
-
upgini-1.1.296a3511.
|
|
63
|
-
upgini-1.1.296a3511.
|
|
60
|
+
upgini-1.1.296a3511.dev5.dist-info/METADATA,sha256=TEsOBiJlv9g1OXW20nKF-8-x9cdomuKZT1IpgC9tEp8,48196
|
|
61
|
+
upgini-1.1.296a3511.dev5.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
|
|
62
|
+
upgini-1.1.296a3511.dev5.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
|
|
63
|
+
upgini-1.1.296a3511.dev5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|