upgini 1.2.113a4__py3-none-any.whl → 1.2.113a3974.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.
- upgini/__about__.py +1 -1
- upgini/autofe/date.py +2 -0
- upgini/features_enricher.py +118 -423
- upgini/metadata.py +0 -1
- upgini/metrics.py +1 -4
- upgini/resource_bundle/strings.properties +1 -4
- upgini/sampler/base.py +1 -3
- upgini/sampler/random_under_sampler.py +8 -18
- upgini/utils/deduplicate_utils.py +7 -43
- upgini/utils/feature_info.py +0 -5
- {upgini-1.2.113a4.dist-info → upgini-1.2.113a3974.dev1.dist-info}/METADATA +1 -1
- {upgini-1.2.113a4.dist-info → upgini-1.2.113a3974.dev1.dist-info}/RECORD +14 -15
- {upgini-1.2.113a4.dist-info → upgini-1.2.113a3974.dev1.dist-info}/WHEEL +1 -1
- upgini/utils/psi.py +0 -268
- {upgini-1.2.113a4.dist-info → upgini-1.2.113a3974.dev1.dist-info}/licenses/LICENSE +0 -0
upgini/__about__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = "1.2.
|
1
|
+
__version__ = "1.2.113a3974.dev1"
|
upgini/autofe/date.py
CHANGED
@@ -318,6 +318,8 @@ class DatePercentile(DatePercentileBase):
|
|
318
318
|
|
319
319
|
class DatePercentileMethod2(DatePercentileBase):
|
320
320
|
name: str = "date_per_method2"
|
321
|
+
is_categorical: bool = True
|
322
|
+
output_type: Optional[str] = "category"
|
321
323
|
|
322
324
|
def _get_bounds(self, date_col: pd.Series) -> pd.Series:
|
323
325
|
pass
|