upgini 1.2.140a4063.dev1__py3-none-any.whl → 1.2.141__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.140a4063.dev1"
1
+ __version__ = "1.2.141"
@@ -816,7 +816,7 @@ class FeaturesEnricher(TransformerMixin):
816
816
  progress_bar=progress_bar,
817
817
  keep_input=keep_input,
818
818
  )
819
- if TARGET in result.columns:
819
+ if result is not None and TARGET in result.columns:
820
820
  result = result.drop(columns=TARGET)
821
821
  self.logger.info("Transform finished successfully")
822
822
  search_progress = SearchProgress(100.0, ProgressStage.FINISHED)
@@ -2954,7 +2954,7 @@ if response.status_code == 200:
2954
2954
 
2955
2955
  for c in result.columns:
2956
2956
  if result[c].dtype == "category":
2957
- result[c].loc[~result[c].isin(result[c].dtype.categories)] = np.nan
2957
+ result.loc[:, c] = np.where(~result[c].isin(result[c].dtype.categories), np.nan, result[c])
2958
2958
 
2959
2959
  return result, columns_renaming, generated_features, search_keys
2960
2960
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: upgini
3
- Version: 1.2.140a4063.dev1
3
+ Version: 1.2.141
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,9 +1,9 @@
1
- upgini/__about__.py,sha256=sVMPSp5kJuzQMaLg_DYy-AOq6_rMBTIccuBHSGO0uXY,34
1
+ upgini/__about__.py,sha256=I2bML2FqWEWGtryWcuBAZONbMQY-aJazrjRrHTVV1Cw,24
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=7qM6O2NnsdnfAVrrPIyHKyUqwlQyuiPsR12ayF0OHsc,33356
5
5
  upgini/errors.py,sha256=2b_Wbo0OYhLUbrZqdLIx5jBnAsiD1Mcenh-VjR4HCTw,950
6
- upgini/features_enricher.py,sha256=YsSFYHUR21ShOHrwDOGssErsoIZ3iwYcUJM6DUMPkoY,237445
6
+ upgini/features_enricher.py,sha256=38GmrjhWZKf-pNTdOmt8DcT19gtDWktVdRvxEjtxiro,237492
7
7
  upgini/http.py,sha256=y26x4TQVYuEM3jz8JdASxSyBtvBemUkFf-FmX25sx-s,44356
8
8
  upgini/metadata.py,sha256=BwUTCY-EUHqPtO0tGazHrk3wqhh-NfjNZhlBHW8bR78,12796
9
9
  upgini/metrics.py,sha256=KCPE_apPN-9BIdv6GqASbJVaB_gBcy8wzNApAcyaGo4,46020
@@ -74,7 +74,7 @@ upgini/utils/target_utils.py,sha256=CihpV6SC95HwtlMH60rGAUzVDa4Id0Bva8ySprmNHlE,
74
74
  upgini/utils/track_info.py,sha256=NDKeQTUlZaYp15UoP-xLKGoDoJQ0drbDMwB0g9R0PUg,6427
75
75
  upgini/utils/ts_utils.py,sha256=26vhC0pN7vLXK6R09EEkMK3Lwb9IVPH7LRdqFIQ3kPs,1383
76
76
  upgini/utils/warning_counter.py,sha256=-GRY8EUggEBKODPSuXAkHn9KnEQwAORC0mmz_tim-PM,254
77
- upgini-1.2.140a4063.dev1.dist-info/METADATA,sha256=nVTtPlJsn6yjFIIwcmcZ2cGX47Hwx5KeHCYTnxyKCt0,51174
78
- upgini-1.2.140a4063.dev1.dist-info/WHEEL,sha256=zEMcRr9Kr03x1ozGwg5v9NQBKn3kndp6LSoSlVg-jhU,87
79
- upgini-1.2.140a4063.dev1.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
80
- upgini-1.2.140a4063.dev1.dist-info/RECORD,,
77
+ upgini-1.2.141.dist-info/METADATA,sha256=h3Vj1iQNywtnF9zdXkokTIWwmklXPN_090IzhjHAh_Q,51164
78
+ upgini-1.2.141.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
79
+ upgini-1.2.141.dist-info/licenses/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
80
+ upgini-1.2.141.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.24.2
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any