upgini 1.1.316a2__py3-none-any.whl → 1.1.316a4__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 CHANGED
@@ -1 +1 @@
1
- __version__ = "1.1.316a2"
1
+ __version__ = "1.1.316a4"
upgini/autofe/date.py CHANGED
@@ -4,7 +4,7 @@ from typing import Any, Dict, List, Optional, Union
4
4
  import numpy as np
5
5
  import pandas as pd
6
6
  from pandas.core.arrays.timedeltas import TimedeltaArray
7
- from pydantic import BaseModel, field_validator
7
+ from pydantic import BaseModel, validator
8
8
 
9
9
  from upgini.autofe.operand import PandasOperand
10
10
 
@@ -246,7 +246,7 @@ class DatePercentile(DatePercentileBase):
246
246
  )
247
247
  return res
248
248
 
249
- @field_validator("zero_bounds", mode="before")
249
+ @validator("zero_bounds", pre="true")
250
250
  def validate_bounds(cls, value):
251
251
  if value is None or isinstance(value, list):
252
252
  return value
upgini/autofe/feature.py CHANGED
@@ -82,9 +82,9 @@ class Feature:
82
82
  self.alias = alias
83
83
 
84
84
  def set_op_params(self, params: Optional[Dict[str, str]]) -> "Feature":
85
- obj_dict = self.op.model_dump().copy()
85
+ obj_dict = self.op.dict().copy()
86
86
  obj_dict.update(params or {})
87
- self.op = self.op.__class__.model_validate(obj_dict)
87
+ self.op = self.op.__class__.parse_obj(obj_dict)
88
88
  self.op.set_params(params)
89
89
 
90
90
  for child in self.children:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: upgini
3
- Version: 1.1.316a2
3
+ Version: 1.1.316a4
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=lnBx1YP_mYM1XVyjFPE_kJqGG8UiGn3zcRQt1R0zSbY,26
1
+ upgini/__about__.py,sha256=i-OBw28RkpSvTIOZTSuyNEDzto-65EgHHD5fh416j-8,26
2
2
  upgini/__init__.py,sha256=Xs0YFVBu1KUdtZzbStGRPQtLt3YLzJnjx5nIUBlX8BE,415
3
3
  upgini/ads.py,sha256=nvuRxRx5MHDMgPr9SiU-fsqRdFaBv8p4_v1oqiysKpc,2714
4
4
  upgini/dataset.py,sha256=yAWIygHejxdKXOA4g3QjtCu0VRa9at-4nPPuugCr77U,30857
@@ -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=3LiH9iU-ArGmYpS8FHWH7yCFx40ILfvlSXJlKIa75BQ,2542
18
18
  upgini/autofe/binary.py,sha256=xRBT7RNqQ7pprz6cRpO1KnvZCb7PvU3QXBfaP6Omqi4,7425
19
- upgini/autofe/date.py,sha256=eLPrO2Cgm74VB4rPtIaeUDuI5vmLiGnygHSvU4aGHWU,9223
20
- upgini/autofe/feature.py,sha256=CivPkE7YrAtDrgF8WhVPnDAnNDR8gbRQ-8_hXiQE6ew,14234
19
+ upgini/autofe/date.py,sha256=aKuEsguYSrFdFiLd6tBLVH4TiQ3JFMo_49_Ajp8eKQg,9208
20
+ upgini/autofe/feature.py,sha256=gwGWY2UcX_0wHAvfEiu1rRU7GFZyzMWZIaPVcf6kD80,14223
21
21
  upgini/autofe/groupby.py,sha256=r-xl_keZZgm_tpiEoDhjYSkT6NHv7a4cRQR4wJ4uCp8,3263
22
22
  upgini/autofe/operand.py,sha256=uk883RaNqgXqtkaRqA1re1d9OFnnpv0JVvelYx09Yw0,2943
23
23
  upgini/autofe/unary.py,sha256=RiK-Fz3fgjPlqWWfro6x7qChjEZ8W8RTnl5-MT1kaQA,4218
@@ -57,7 +57,7 @@ upgini/utils/sklearn_ext.py,sha256=13jQS_k7v0aUtudXV6nGUEWjttPQzAW9AFYL5wgEz9k,4
57
57
  upgini/utils/target_utils.py,sha256=BVtDmrmFMKerSUWaNOIEdzsYHIFiODdpnWbE50QDPDc,7864
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.316a2.dist-info/METADATA,sha256=h4ZR7hMkhteC4WNoyFJ7dXVTpUJyphWHa8cKmhP5BEQ,48232
61
- upgini-1.1.316a2.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
62
- upgini-1.1.316a2.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
63
- upgini-1.1.316a2.dist-info/RECORD,,
60
+ upgini-1.1.316a4.dist-info/METADATA,sha256=fz3VauXEbpF-_XYIVwL3rESOeDF3kV8HSluaOUBN1hE,48232
61
+ upgini-1.1.316a4.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
62
+ upgini-1.1.316a4.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
63
+ upgini-1.1.316a4.dist-info/RECORD,,