Implements Wide Boosting functions for popular boosting packages
Project description
wideboost
Implements wide boosting using popular boosting frameworks as a backend.
Getting started
pip install wideboost
Sample script
XGBoost back-end
import xgboost as xgb
from wideboost.wrappers import wxgb
dtrain = xgb.DMatrix('../../xgboost/demo/data/agaricus.txt.train')
dtest = xgb.DMatrix('../../xgboost/demo/data/agaricus.txt.test')
# Two extra parameters, 'btype' and 'extra_dims'
param = {'btype':'I','extra_dims':2,'max_depth':2, 'eta':0.1, 'objective':'binary:logistic','eval_metric':['error'] }
num_round = 50
watchlist = [(dtrain,'train'),(dtest,'test')]
wxgb_results = dict()
bst = wxgb.train(param, dtrain, num_round,watchlist,evals_result=xgb_results)
Parameter Explanations
'btype' indicates how to initialize the beta matrix. Settings are 'I', 'In', 'R', 'Rn'.
'extra_dims' integer indicating how many "wide" dimensions are used. When 'extra_dims' is set to 0 (and 'btype' is set to 'I') then wide boosting is equivalent to standard gradient boosting.
Reference
Coming Soon!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wideboost-0.1.3.tar.gz.
File metadata
- Download URL: wideboost-0.1.3.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c56b2efa030c182ec597aea57a2b614bd7f558f66a7e4c145871b824128e353
|
|
| MD5 |
6337c0907e30accd4cdab2e78ea0f0d6
|
|
| BLAKE2b-256 |
7092ac9b4379aadf9b67add77337dbc42fc61a6b3dd7c8ab53d5e57be3f84356
|
File details
Details for the file wideboost-0.1.3-py3-none-any.whl.
File metadata
- Download URL: wideboost-0.1.3-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/3.8.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b11553b6f35ce74ef4936bd1380723744a7ade6bb99ae610f4a7ac83230a497
|
|
| MD5 |
f633c0a3fea50041b69065fed157a1e3
|
|
| BLAKE2b-256 |
6bb4694f43361eb738608f47e0cdd7b3140f0aebcc12b517f433dabc9e1090e4
|