upgini 1.1.280a3418.post5__py3-none-any.whl → 1.1.280a3418.post6__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.1.280a3418-5"
1
+ __version__ = "1.1.280a3418-6"
upgini/autofe/date.py CHANGED
@@ -1,9 +1,10 @@
1
+ from datetime import date
1
2
  from typing import Any, List, Optional, Union
2
3
 
3
4
  import numpy as np
4
5
  import pandas as pd
5
6
  from pandas.core.arrays.timedeltas import TimedeltaArray
6
- from pydantic import BaseModel
7
+ from pydantic import BaseModel, validator
7
8
 
8
9
  from upgini.autofe.operand import PandasOperand
9
10
 
@@ -123,14 +124,22 @@ class DatePercentile(PandasOperand):
123
124
  is_binary = True
124
125
  output_type = "float"
125
126
 
127
+ date_unit: Optional[str] = None
126
128
  zero_month: Optional[int]
127
129
  zero_year: Optional[int]
128
130
  zero_bounds: Optional[List[float]]
129
131
  step: int = 30
130
132
 
133
+ @validator("zero_bounds", pre=True)
134
+ def validate_bounds(cls, value):
135
+ if value is None or isinstance(value, list):
136
+ return value
137
+ elif isinstance(value, str):
138
+ return value[1:-1].split(", ")
139
+
131
140
  def calculate_binary(self, left: pd.Series, right: pd.Series) -> pd.Series:
132
141
  # Assuming that left is a date column, right is a feature column
133
- left = pd.to_datetime(left)
142
+ left = pd.to_datetime(left, unit=self.date_unit)
134
143
  months = left.dt.month
135
144
  years = left.dt.year
136
145
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: upgini
3
- Version: 1.1.280a3418.post5
3
+ Version: 1.1.280a3418.post6
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=Q1FR3KMCOuNua410sfebGueolQy2Aez075gUP4etVtM,31
1
+ upgini/__about__.py,sha256=23lJ6tvgrAt5PD-c3jmD6rUoxDdKPt4z1WQtDj9pmSM,31
2
2
  upgini/__init__.py,sha256=asENHgEVHQBIkV-e_0IhE_ZWqkCG6398U3ZLrNzAH6k,407
3
3
  upgini/ads.py,sha256=nvuRxRx5MHDMgPr9SiU-fsqRdFaBv8p4_v1oqiysKpc,2714
4
4
  upgini/dataset.py,sha256=uiFY-P8te7-zigib1hGWRtW5v0X7chxPM0hJFdixAN8,45623
@@ -15,7 +15,7 @@ upgini/ads_management/ads_manager.py,sha256=igVbN2jz80Umb2BUJixmJVj-zx8unoKpecVo
15
15
  upgini/autofe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  upgini/autofe/all_operands.py,sha256=7UyvmmqGSqQu4kDgoFwQRKY__b9xKDk3Fpp2-H8A7AA,2399
17
17
  upgini/autofe/binary.py,sha256=441BRuqMsxlxuw4c8rMZB6h5EpRdVMk-bVa03U7T5Hg,3973
18
- upgini/autofe/date.py,sha256=n_Ao51RokgZX4uIff37REa96A_4Oh2BZE2QgTyXKCzw,5208
18
+ upgini/autofe/date.py,sha256=pG1niZllMCEV3vE80DPG2HxRE4V988J0Ojd0ukkvK1Q,5538
19
19
  upgini/autofe/feature.py,sha256=8ugRW-Ckc-SYNQawgEluoAzJ_oM5v6y9r5Qx_E-C14o,11977
20
20
  upgini/autofe/groupby.py,sha256=4WjDzQxqpZxB79Ih4ihMMI5GDxaFqiH6ZelfV82ClT4,3091
21
21
  upgini/autofe/operand.py,sha256=xgEIZuFCfckc6LpBqVu1OVK3JEabm1O-LHUsp83EHKA,2806
@@ -56,7 +56,7 @@ upgini/utils/sklearn_ext.py,sha256=c23MGSUVfxLnaDWKAxavHgnOtm5dGKkF3YswdWQcFzs,4
56
56
  upgini/utils/target_utils.py,sha256=Y96_PJ5cC-WsEbeqg20v9uqywDQobLoTb-xoP7S3o4E,7807
57
57
  upgini/utils/track_info.py,sha256=G5Lu1xxakg2_TQjKZk4b5SvrHsATTXNVV3NbvWtT8k8,5663
58
58
  upgini/utils/warning_counter.py,sha256=dIWBB4dI5XRRJZudvIlqlIYKEiwLLPcXarsZuYRt338,227
59
- upgini-1.1.280a3418.post5.dist-info/METADATA,sha256=rFBfntuYeUXsUisftZbvZhS-i6MPHagu8WfynRsqjbg,48129
60
- upgini-1.1.280a3418.post5.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
61
- upgini-1.1.280a3418.post5.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
62
- upgini-1.1.280a3418.post5.dist-info/RECORD,,
59
+ upgini-1.1.280a3418.post6.dist-info/METADATA,sha256=qC25h-6BjQZwpOnnWsZ3Z-pGs45Q6Ecj_o64ACrl8VI,48129
60
+ upgini-1.1.280a3418.post6.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
61
+ upgini-1.1.280a3418.post6.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
62
+ upgini-1.1.280a3418.post6.dist-info/RECORD,,