upgini 1.1.268a4__py3-none-any.whl → 1.1.268a5__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/metrics.py CHANGED
@@ -3,10 +3,10 @@ import re
3
3
  from copy import deepcopy
4
4
  from typing import Any, Callable, Dict, List, Optional, Tuple, Union
5
5
 
6
+ import catboost
6
7
  import numpy as np
7
8
  import pandas as pd
8
9
  from catboost import CatBoostClassifier, CatBoostRegressor
9
- import catboost
10
10
  from lightgbm import LGBMClassifier, LGBMRegressor
11
11
  from numpy import log1p
12
12
  from pandas.api.types import is_numeric_dtype
@@ -353,6 +353,7 @@ class EstimatorWrapper:
353
353
  "target_type": target_type,
354
354
  "groups": groups,
355
355
  "text_features": text_features,
356
+ "logger": logger,
356
357
  }
357
358
  if estimator is None:
358
359
  params = dict()
@@ -415,9 +416,18 @@ class CatBoostWrapper(EstimatorWrapper):
415
416
  target_type: ModelTaskType,
416
417
  groups: Optional[List[str]] = None,
417
418
  text_features: Optional[List[str]] = None,
419
+ logger: Optional[logging.Logger] = None,
418
420
  ):
419
421
  super(CatBoostWrapper, self).__init__(
420
- estimator, scorer, metric_name, multiplier, cv, target_type, groups=groups, text_features=text_features
422
+ estimator,
423
+ scorer,
424
+ metric_name,
425
+ multiplier,
426
+ cv,
427
+ target_type,
428
+ groups=groups,
429
+ text_features=text_features,
430
+ logger=logger,
421
431
  )
422
432
  self.cat_features = None
423
433
  self.emb_features = None
@@ -439,9 +449,7 @@ class CatBoostWrapper(EstimatorWrapper):
439
449
  X, embedding_features = self.group_embeddings(X)
440
450
  params["embedding_features"] = embedding_features
441
451
  else:
442
- self.logger.info(
443
- f"Embedding features count less than 3, so use them separately: {self.emb_features}"
444
- )
452
+ self.logger.info(f"Embedding features count less than 3, so use them separately: {self.emb_features}")
445
453
  self.emb_features = []
446
454
  else:
447
455
  self.logger.warning(f"Embedding features are not supported by Catboost version {catboost.__version__}")
@@ -546,9 +554,18 @@ class LightGBMWrapper(EstimatorWrapper):
546
554
  target_type: ModelTaskType,
547
555
  groups: Optional[List[str]] = None,
548
556
  text_features: Optional[List[str]] = None,
557
+ logger: Optional[logging.Logger] = None,
549
558
  ):
550
559
  super(LightGBMWrapper, self).__init__(
551
- estimator, scorer, metric_name, multiplier, cv, target_type, groups=groups, text_features=text_features
560
+ estimator,
561
+ scorer,
562
+ metric_name,
563
+ multiplier,
564
+ cv,
565
+ target_type,
566
+ groups=groups,
567
+ text_features=text_features,
568
+ logger=logger,
552
569
  )
553
570
  self.cat_features = None
554
571
 
@@ -585,9 +602,18 @@ class OtherEstimatorWrapper(EstimatorWrapper):
585
602
  target_type: ModelTaskType,
586
603
  groups: Optional[List[str]] = None,
587
604
  text_features: Optional[List[str]] = None,
605
+ logger: Optional[logging.Logger] = None,
588
606
  ):
589
607
  super(OtherEstimatorWrapper, self).__init__(
590
- estimator, scorer, metric_name, multiplier, cv, target_type, groups=groups, text_features=text_features
608
+ estimator,
609
+ scorer,
610
+ metric_name,
611
+ multiplier,
612
+ cv,
613
+ target_type,
614
+ groups=groups,
615
+ text_features=text_features,
616
+ logger=logger,
591
617
  )
592
618
  self.cat_features = None
593
619
 
@@ -1,5 +1,4 @@
1
1
  import functools
2
- import logging
3
2
  import numbers
4
3
  import time
5
4
  import warnings
@@ -312,7 +311,7 @@ def cross_validate(
312
311
  ret[key] = train_scores_dict[name]
313
312
 
314
313
  return ret
315
- except Exception as e:
314
+ except Exception:
316
315
  # logging.exception("Failed to execute overriden cross_validate. Fallback to original")
317
316
  raise
318
317
  # fit_params["use_best_model"] = False
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: upgini
3
- Version: 1.1.268a4
3
+ Version: 1.1.268a5
4
4
  Summary: Intelligent data search & enrichment for Machine Learning
5
5
  Home-page: https://upgini.com/
6
6
  Author: Upgini Developers
@@ -6,7 +6,7 @@ upgini/features_enricher.py,sha256=1vHhSQBnFsq6IoYaG_oJbgEWqRZMpkt1rkoLOD-6nl4,1
6
6
  upgini/fingerprint.js,sha256=VygVIQlN1v4NGZfjHqtRogOw8zjTnnMNJg_f7M5iGQU,33442
7
7
  upgini/http.py,sha256=zaO86LBBLmkieGbgYifk29eVoPCxXimZQ8YkQtKcM0I,42244
8
8
  upgini/metadata.py,sha256=fwVxtkR6Mn4iRoOqV6BfMJvJrx65I3YwZUMbZjhPyOI,9673
9
- upgini/metrics.py,sha256=nnP2bDjJSTQ_9eRgeGsNrACITFF4fxlW8tf_aZ5Y1GI,28583
9
+ upgini/metrics.py,sha256=VmxVc-plbRPZ1U3Ve3E-FZkhYqi0X2r7x8H5L-shux4,29058
10
10
  upgini/search_task.py,sha256=tmJ17WUxv3J5NWrYUJB_NKdZ792Ifz8Z8UnDXeQnpss,17077
11
11
  upgini/spinner.py,sha256=Dm1dQ5F_z_Ua2odLxZX7OypcOX9tSx_vE5MGaKtUmfw,1118
12
12
  upgini/version_validator.py,sha256=rDIncP6BEko4J2F2hUcMOtKm_vZbI4ICWcNcw8hrwM4,1400
@@ -52,12 +52,12 @@ upgini/utils/ip_utils.py,sha256=Zf3F2cnQmOCH09QLQHetpjMFu1PnD0cTmDymn0SnSy8,1672
52
52
  upgini/utils/phone_utils.py,sha256=JNSkF8G6mgsN8Czy11pamaJdsY6rBINEMpi7jbVt_RA,408
53
53
  upgini/utils/postal_code_utils.py,sha256=_8CR9tBqsPptQsmMUvnrCAmBaMIQSWH3JfJ4ly3x_zs,409
54
54
  upgini/utils/progress_bar.py,sha256=iNXyqT3vKCeHpfiG5HHwr7Lk2cTtKViM93Fl8iZnjGc,1564
55
- upgini/utils/sklearn_ext.py,sha256=m_bE_x3w9qKpkqF2N2DFItTN02akeOANbgoW7cVzZUo,44034
55
+ upgini/utils/sklearn_ext.py,sha256=e1aMNXk1zUt7uFnl0FcUF0zOnaXSE7z5xBHmJPknUVs,44014
56
56
  upgini/utils/target_utils.py,sha256=9K67tkY7LWhQMO-vbbPqBaO-KriAmg_6fVz5RQRaLQc,7802
57
57
  upgini/utils/track_info.py,sha256=EPcJ13Jqa17_T0JjM37Ac9kWDz5Zk0GVsIZKutOb8aU,5207
58
58
  upgini/utils/warning_counter.py,sha256=dIWBB4dI5XRRJZudvIlqlIYKEiwLLPcXarsZuYRt338,227
59
- upgini-1.1.268a4.dist-info/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
60
- upgini-1.1.268a4.dist-info/METADATA,sha256=OjHDh5guaGa8l2K6mQ1x0NlkWElQDirIpis2rnbqWzE,48158
61
- upgini-1.1.268a4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
62
- upgini-1.1.268a4.dist-info/top_level.txt,sha256=OFhTGiDIWKl5gFI49qvWq1R9IKflPaE2PekcbDXDtx4,7
63
- upgini-1.1.268a4.dist-info/RECORD,,
59
+ upgini-1.1.268a5.dist-info/LICENSE,sha256=5RRzgvdJUu3BUDfv4bzVU6FqKgwHlIay63pPCSmSgzw,1514
60
+ upgini-1.1.268a5.dist-info/METADATA,sha256=FdDc6ww55mQalw_8crXCuUIphsCH_2EUY7EW2f-C_pE,48158
61
+ upgini-1.1.268a5.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
62
+ upgini-1.1.268a5.dist-info/top_level.txt,sha256=OFhTGiDIWKl5gFI49qvWq1R9IKflPaE2PekcbDXDtx4,7
63
+ upgini-1.1.268a5.dist-info/RECORD,,