upgini 1.2.55a2__py3-none-any.whl → 1.2.56a3675.dev1__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 CHANGED
@@ -1 +1 @@
1
- __version__ = "1.2.55a2"
1
+ __version__ = "1.2.56a3675.dev1"
upgini/autofe/date.py CHANGED
@@ -64,6 +64,9 @@ class DateDiff(PandasOperand, DateDiffMixin):
64
64
  return res
65
65
 
66
66
  def calculate_binary(self, left: pd.Series, right: pd.Series) -> pd.Series:
67
+ if left.isna().all() or right.isna().all():
68
+ return pd.Series([None] * len(left))
69
+
67
70
  left = self._convert_to_date(left, self.left_unit)
68
71
  right = self._convert_to_date(right, self.right_unit)
69
72
  diff = self._convert_diff_to_unit(left.dt.date - right.dt.date)
@@ -142,6 +145,9 @@ class DateListDiff(PandasOperand, DateDiffMixin, ParametrizedOperand):
142
145
  return cls(aggregation=aggregation)
143
146
 
144
147
  def calculate_binary(self, left: pd.Series, right: pd.Series) -> pd.Series:
148
+ if left.isna().all() or right.isna().all():
149
+ return pd.Series([None] * len(left), dtype=np.float64)
150
+
145
151
  left = self._convert_to_date(left, self.left_unit)
146
152
  right_mask = right.apply(lambda x: len(x) > 0)
147
153
  mask = left.notna() & right.notna() & right_mask
@@ -230,6 +236,8 @@ class DatePercentileBase(PandasOperand, abc.ABC):
230
236
  pass
231
237
 
232
238
  def _perc(self, f, bounds):
239
+ if f is None or np.isnan(f):
240
+ return np.nan
233
241
  hit = np.where(f >= np.array(bounds))[0]
234
242
  if hit.size > 0:
235
243
  return np.max(hit) + 1
upgini/autofe/feature.py CHANGED
@@ -26,7 +26,7 @@ class Column:
26
26
  return dict()
27
27
 
28
28
  def rename_columns(self, mapping: Dict[str, str]) -> "Column":
29
- self.name = self._unhash(mapping.get(self.name) or self.name)
29
+ self.name = mapping.get(self.name) or self.name
30
30
  return self
31
31
 
32
32
  def _unhash(self, feature_name: str) -> str:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: upgini
3
- Version: 1.2.55a2
3
+ Version: 1.2.56a3675.dev1
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=AoPRhBb-_Kg5q3atFlIhgGYnF89Sf3FiehaPlpQQx5M,25
1
+ upgini/__about__.py,sha256=zutpbvOkIMghNnMan4pM_KmtKU8O_-m4L2jZD3YAlDU,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=vT4JyHmafLNbj54SySXr93f5hNS6-t94aFslbBy-7No,33535
@@ -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=v0_NozalvvzeojSAA0d7UJ5INS654ZVaLn4S8djK6Ac,329
18
18
  upgini/autofe/binary.py,sha256=zMhtHVuGUAFLUqem-XiXqJj-GRXxS88tdz8tFuDfSNM,7659
19
- upgini/autofe/date.py,sha256=d-sijAD7dETfqIOCaZh1vhuVjsS_nqa-6dhjwkCdny4,10441
20
- upgini/autofe/feature.py,sha256=l8A8E3BH2BmYvqEC81zbcIEfH6KEEhcesJ2BH4fn0-4,15140
19
+ upgini/autofe/date.py,sha256=oykxfmny4LOr6m79IipOUCtk2JQSUdSCWHh8K9n7nek,10726
20
+ upgini/autofe/feature.py,sha256=fGZcnn6X8jJwINz_JQ-HiRvT6o2f23rORXHavdJIIN8,15126
21
21
  upgini/autofe/groupby.py,sha256=G48_sQZw016eGx3cOy8YQrEIOp95puWqYUpFWd-gdeM,3595
22
22
  upgini/autofe/operand.py,sha256=8Ttrfxv_H91dMbS7J55zxluzAJHfGXU_Y2xCh4OHwb8,4774
23
23
  upgini/autofe/unary.py,sha256=T3E7F3dA_7o_rkdCFq7JV6nHLzcoHLHQTcxO7y5Opa4,4646
@@ -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.55a2.dist-info/METADATA,sha256=j01z5ab2V_U_jFU4mNVMFcSmWqsb9ePRLJsgK6BunU0,49057
63
- upgini-1.2.55a2.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
64
- upgini-1.2.55a2.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
65
- upgini-1.2.55a2.dist-info/RECORD,,
62
+ upgini-1.2.56a3675.dev1.dist-info/METADATA,sha256=dzP80HeBsaFEEmIjuVeC7HWPO4UWTcEwiLqmPOE17-8,49065
63
+ upgini-1.2.56a3675.dev1.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
64
+ upgini-1.2.56a3675.dev1.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
65
+ upgini-1.2.56a3675.dev1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.25.0
2
+ Generator: hatchling 1.24.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any