Description Usage Arguments Value Examples
Gradient boosting for regression and classification with cross validation to search for hyper-parameters (implemented with xgboost)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
x |
the input features |
y |
the observed response (real valued) |
weights |
weights for input if doing weighted regression/classification. If set to NULL, no weights are used |
k_folds |
number of folds used in cross validation |
objective |
choose from either "reg:squarederror" for regression or "binary:logistic" for logistic regression |
ntrees_max |
the maximum number of trees to grow for xgboost |
num_search_rounds |
the number of random sampling of hyperparameter combinations for cross validating on xgboost trees |
print_every_n |
the number of iterations (in each iteration, a tree is grown) by which the code prints out information |
early_stopping_rounds |
the number of rounds the test error stops decreasing by which the cross validation in finding the optimal number of trees stops |
nthread |
the number of threads to use. The default is NULL, which uses all available threads. Note that this does not apply to using bayesian optimization to search for hyperparameters. |
verbose |
boolean; whether to print statistic |
a cvboost object
1 2 3 4 5 6 7 8 9 10 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.