unifiedbooster 0.10.0__tar.gz → 0.10.1__tar.gz

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.
Files changed (29) hide show
  1. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/PKG-INFO +1 -1
  2. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/setup.py +1 -1
  3. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/gbdt_classification.py +0 -6
  4. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster.egg-info/PKG-INFO +1 -1
  5. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/LICENSE +0 -0
  6. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/README.md +0 -0
  7. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/setup.cfg +0 -0
  8. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/__init__.py +0 -0
  9. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/gbdt.py +0 -0
  10. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/gbdt_regression.py +0 -0
  11. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/gpoptimization.py +0 -0
  12. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/nonconformist/__init__.py +0 -0
  13. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/nonconformist/acp.py +0 -0
  14. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/nonconformist/base.py +0 -0
  15. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/nonconformist/cp.py +0 -0
  16. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/nonconformist/evaluation.py +0 -0
  17. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/nonconformist/icp.py +0 -0
  18. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/nonconformist/nc.py +0 -0
  19. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/nonconformist/util.py +0 -0
  20. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/predictioninterval/__init__.py +0 -0
  21. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/predictioninterval/predictioninterval.py +0 -0
  22. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/predictionset/__init__.py +0 -0
  23. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster/predictionset/predictionset.py +0 -0
  24. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster.egg-info/SOURCES.txt +0 -0
  25. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster.egg-info/dependency_links.txt +0 -0
  26. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster.egg-info/entry_points.txt +0 -0
  27. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster.egg-info/not-zip-safe +0 -0
  28. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster.egg-info/requires.txt +0 -0
  29. {unifiedbooster-0.10.0 → unifiedbooster-0.10.1}/unifiedbooster.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: unifiedbooster
3
- Version: 0.10.0
3
+ Version: 0.10.1
4
4
  Summary: Unified interface for Gradient Boosted Decision Trees
5
5
  Home-page: https://github.com/thierrymoudiki/unifiedbooster
6
6
  Author: T. Moudiki
@@ -9,7 +9,7 @@ from os import path
9
9
 
10
10
  # subprocess.check_call(['pip', 'install', 'Cython'])
11
11
 
12
- __version__ = "0.10.0"
12
+ __version__ = "0.10.1"
13
13
 
14
14
  here = path.abspath(path.dirname(__file__))
15
15
 
@@ -170,7 +170,6 @@ class GBDTClassifier(GBDT, ClassifierMixin):
170
170
 
171
171
  if model_type in ("xgboost", "xgb"):
172
172
  self.model = XGBClassifier(**self.params)
173
- <<<<<<< HEAD
174
173
  elif model_type == "catboost":
175
174
  fast_cb = dict(
176
175
  thread_count=-1,
@@ -182,11 +181,6 @@ class GBDTClassifier(GBDT, ClassifierMixin):
182
181
  )
183
182
  self.model = CatBoostClassifier(**self.params, **fast_cb)
184
183
  elif model_type == "lightgbm":
185
- =======
186
- elif model_type in ("catboost", "cb"):
187
- self.model = CatBoostClassifier(**self.params)
188
- elif model_type in ("lightgbm", "lgb"):
189
- >>>>>>> 0c97427b8cbd66d509a3cc24747eeea8b157779d
190
184
  self.model = LGBMClassifier(**self.params)
191
185
  elif model_type in ("gradientboosting", "gb"):
192
186
  self.model = GradientBoostingClassifier(**self.params)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: unifiedbooster
3
- Version: 0.10.0
3
+ Version: 0.10.1
4
4
  Summary: Unified interface for Gradient Boosted Decision Trees
5
5
  Home-page: https://github.com/thierrymoudiki/unifiedbooster
6
6
  Author: T. Moudiki
File without changes