upgini 1.1.291a3232.post3__py3-none-any.whl → 1.1.291a3232.post4__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.291a3232-3"
1
+ __version__ = "1.1.291a3232-4"
upgini/autofe/unary.py CHANGED
@@ -114,15 +114,14 @@ class Freq(PandasOperand):
114
114
  return self._loc(data, value_counts)
115
115
 
116
116
 
117
- class Norm(PandasOperand, VectorizableMixin):
117
+ class Norm(PandasOperand):
118
118
  name = "norm"
119
119
  is_unary = True
120
120
  output_type = "float"
121
121
 
122
122
  def calculate_unary(self, data: pd.Series) -> pd.Series:
123
- normalized_data = Normalizer().transform(data.to_frame().T).T
124
- return pd.Series(normalized_data[:, 0], index=data.index, name=data.name)
125
-
126
- def calculate_group(self, data: pd.DataFrame, **kwargs) -> pd.DataFrame:
127
- normalized_data = Normalizer().transform(data.T).T
128
- return pd.DataFrame(normalized_data, index=data.index, columns=data.columns)
123
+ data_dropna = data.dropna()
124
+ normalized_data = Normalizer().transform(data_dropna.to_frame().T).T
125
+ normalized_data = pd.Series(normalized_data[:, 0], index=data_dropna.index, name=data.name)
126
+ normalized_data = normalized_data.reindex(data.index)
127
+ return normalized_data
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: upgini
3
- Version: 1.1.291a3232.post3
3
+ Version: 1.1.291a3232.post4
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=cRF02lu4xw6jygI8-Pm-EKge0Js7vS1ywPBBNcxhPus,31
1
+ upgini/__about__.py,sha256=jJbyMqOUOTTjUS0541LO2dVvKHQKVhOwnhdh0afozrE,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=7TLVVhGtjgx_9yaiaIUK3kZSe_R9wg5dY0d4F5qCGM4,45636
@@ -19,7 +19,7 @@ upgini/autofe/date.py,sha256=qzk0NT332Q0vR1eRwTuNiMSrGE3ulh6Ic3QLBZqSdvw,7284
19
19
  upgini/autofe/feature.py,sha256=_V9B74B3ue7eAYXSOt9JKhVC9klkAKks22MwnBRye_w,12487
20
20
  upgini/autofe/groupby.py,sha256=4WjDzQxqpZxB79Ih4ihMMI5GDxaFqiH6ZelfV82ClT4,3091
21
21
  upgini/autofe/operand.py,sha256=MKEsl3zxpWzRDpTkE0sNJxTu62U20sWOvEKhPjUWS6s,2915
22
- upgini/autofe/unary.py,sha256=_BjdjPRFCZSL42hX_MSzQeIvtTVZ_FnvasRZKMtuayc,3739
22
+ upgini/autofe/unary.py,sha256=ZWjLd-CUkNt_PpM8YuWLLipW1v_RdBlsl4JxXIVo9aM,3652
23
23
  upgini/autofe/vector.py,sha256=dLxfAstJs-gw_OQ1xxoxcM6pVzORlV0HVzdzt7cLXVQ,606
24
24
  upgini/data_source/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
25
  upgini/data_source/data_source_publisher.py,sha256=B4fJ1owDCF5ZZ0Ca9ywi_CXVt4iPvABh5BGTnXdXmHk,16635
@@ -56,7 +56,7 @@ upgini/utils/sklearn_ext.py,sha256=13jQS_k7v0aUtudXV6nGUEWjttPQzAW9AFYL5wgEz9k,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.291a3232.post3.dist-info/METADATA,sha256=S0aJ1bcO5UxRuM0UiqKCUP2t2qhBqVjdx1vYeSt976U,48128
60
- upgini-1.1.291a3232.post3.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
61
- upgini-1.1.291a3232.post3.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
62
- upgini-1.1.291a3232.post3.dist-info/RECORD,,
59
+ upgini-1.1.291a3232.post4.dist-info/METADATA,sha256=aKEzY66AyuXkd0_pSeuHIMhby3Czc7LM7iI5ui7qemg,48128
60
+ upgini-1.1.291a3232.post4.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
61
+ upgini-1.1.291a3232.post4.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
62
+ upgini-1.1.291a3232.post4.dist-info/RECORD,,