unifiedbooster 0.10.0__py3-none-any.whl → 0.10.2__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.
@@ -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)
@@ -178,7 +178,6 @@ class GBDTRegressor(GBDT, RegressorMixin):
178
178
 
179
179
  if model_type in ("xgboost", "xgb"):
180
180
  self.model = XGBRegressor(**self.params)
181
- <<<<<<< HEAD
182
181
  elif model_type == "catboost":
183
182
  fast_cb = dict(
184
183
  thread_count=-1,
@@ -190,11 +189,6 @@ class GBDTRegressor(GBDT, RegressorMixin):
190
189
  )
191
190
  self.model = CatBoostRegressor(**self.params, **fast_cb)
192
191
  elif model_type == "lightgbm":
193
- =======
194
- elif model_type in ("catboost", "cb"):
195
- self.model = CatBoostRegressor(**self.params)
196
- elif model_type in ("lightgbm", "lgb"):
197
- >>>>>>> 0c97427b8cbd66d509a3cc24747eeea8b157779d
198
192
  self.model = LGBMRegressor(**self.params)
199
193
  elif model_type in ("gradientboosting", "gb"):
200
194
  self.model = GradientBoostingRegressor(**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.2
4
4
  Summary: Unified interface for Gradient Boosted Decision Trees
5
5
  Home-page: https://github.com/thierrymoudiki/unifiedbooster
6
6
  Author: T. Moudiki
@@ -1,7 +1,7 @@
1
1
  unifiedbooster/__init__.py,sha256=8FEkWCZ2tT8xcW46Z0X_BS9_r0kQWVAu37IncLq6QWU,301
2
2
  unifiedbooster/gbdt.py,sha256=FSaZngKlFR943cq1QclZlsOFjM6tmX446e6GeoGtA6Q,5176
3
- unifiedbooster/gbdt_classification.py,sha256=9buXrIR3By3rvyEaYiPv4o7gFAuqJA_L6_uIT1vqRO0,6614
4
- unifiedbooster/gbdt_regression.py,sha256=Zcy2jok5NkT1hVFtbI5TDioWzxlyCvRURYgfKwBo73A,6538
3
+ unifiedbooster/gbdt_classification.py,sha256=vwVuTMAaNYFQsZGt2Rcp90MyvbDbnJvnqriMuULTLmE,6378
4
+ unifiedbooster/gbdt_regression.py,sha256=ISgMAXm_jYeNNqQ5BYDUZShCHp_f-1D2FpYspLT1m8I,6303
5
5
  unifiedbooster/gpoptimization.py,sha256=UoT20E5dfhREiY7Cqo0vCktBzDBRnnG_6Xyg426vdfk,15238
6
6
  unifiedbooster/nonconformist/__init__.py,sha256=sHEakjPhqUhmZwawAv34bHcTDmF1uZvqvGLIMjOM0B0,739
7
7
  unifiedbooster/nonconformist/acp.py,sha256=SrfBVCWjXvntkBJ7GXTFYE6i6NU3Pv-5ibwhpItDKDw,11553
@@ -15,9 +15,9 @@ unifiedbooster/predictioninterval/__init__.py,sha256=I1X1omp6Bsuzfm7z8TCSICe2175
15
15
  unifiedbooster/predictioninterval/predictioninterval.py,sha256=6XQnJQDpsWG-uu5yFxeZQewnrErAjZLzv21YvtarXZQ,11164
16
16
  unifiedbooster/predictionset/__init__.py,sha256=IGhWVX8-VeZ15HeLFWu8QeKCz7DIE4TlEXMjTnB3VdE,70
17
17
  unifiedbooster/predictionset/predictionset.py,sha256=C38rC1qAhhXa8YUJjVB3yjYjPXToU1HVXBRoBevsRxk,3308
18
- unifiedbooster-0.10.0.dist-info/licenses/LICENSE,sha256=3rWw63btcdqbC0XMnpzCQhxDP8Vx7yKkKS7EDgJiY_4,1061
19
- unifiedbooster-0.10.0.dist-info/METADATA,sha256=fWymK7HzbDfARFxbQEsRYQHinNDbtwHvmYFx2e1lCIo,1152
20
- unifiedbooster-0.10.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
21
- unifiedbooster-0.10.0.dist-info/entry_points.txt,sha256=OVNTsCzMYnaJ11WIByB7G8Lym_dj-ERKZyQxWFUcW30,59
22
- unifiedbooster-0.10.0.dist-info/top_level.txt,sha256=gOMxxpRtx8_nJXTWsXJDFkNeCsjSJQPs6aUXKK5_nI4,15
23
- unifiedbooster-0.10.0.dist-info/RECORD,,
18
+ unifiedbooster-0.10.2.dist-info/licenses/LICENSE,sha256=3rWw63btcdqbC0XMnpzCQhxDP8Vx7yKkKS7EDgJiY_4,1061
19
+ unifiedbooster-0.10.2.dist-info/METADATA,sha256=ARHYoKX3dBBVD8_XLzcvb5mYXl49qTPjzYt020G0pRY,1152
20
+ unifiedbooster-0.10.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
21
+ unifiedbooster-0.10.2.dist-info/entry_points.txt,sha256=OVNTsCzMYnaJ11WIByB7G8Lym_dj-ERKZyQxWFUcW30,59
22
+ unifiedbooster-0.10.2.dist-info/top_level.txt,sha256=gOMxxpRtx8_nJXTWsXJDFkNeCsjSJQPs6aUXKK5_nI4,15
23
+ unifiedbooster-0.10.2.dist-info/RECORD,,