unifiedbooster 0.10.0__tar.gz → 0.10.2__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.
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/PKG-INFO +1 -1
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/setup.py +1 -1
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/gbdt_classification.py +0 -6
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/gbdt_regression.py +0 -6
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster.egg-info/PKG-INFO +1 -1
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/LICENSE +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/README.md +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/setup.cfg +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/__init__.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/gbdt.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/gpoptimization.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/nonconformist/__init__.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/nonconformist/acp.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/nonconformist/base.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/nonconformist/cp.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/nonconformist/evaluation.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/nonconformist/icp.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/nonconformist/nc.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/nonconformist/util.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/predictioninterval/__init__.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/predictioninterval/predictioninterval.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/predictionset/__init__.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/predictionset/predictionset.py +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster.egg-info/SOURCES.txt +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster.egg-info/dependency_links.txt +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster.egg-info/entry_points.txt +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster.egg-info/not-zip-safe +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster.egg-info/requires.txt +0 -0
- {unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster.egg-info/top_level.txt +0 -0
|
@@ -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)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/predictioninterval/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster/predictionset/predictionset.py
RENAMED
|
File without changes
|
|
File without changes
|
{unifiedbooster-0.10.0 → unifiedbooster-0.10.2}/unifiedbooster.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|