PAMM wrapper for xgb.train
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19  | 
params | 
 the list of parameters. The complete list of parameters is available in the online documentation. Below is a shorter summary: 1. General Parameters 
 2. Booster Parameters 2.1. Parameter for Tree Booster 
 2.2. Parameter for Linear Booster 
 3. Task Parameters 
  | 
data | 
 training dataset.   | 
nrounds | 
 max number of boosting iterations.  | 
watchlist | 
 named list of xgb.DMatrix datasets to use for evaluating model performance.
Metrics specified in either   | 
obj | 
 customized objective function. Returns gradient and second order gradient with given prediction and dtrain.  | 
feval | 
 customized evaluation function. Returns
  | 
verbose | 
 If 0, xgboost will stay silent. If 1, it will print information about performance.
If 2, some additional information will be printed out.
Note that setting   | 
print_every_n | 
 Print each n-th iteration evaluation messages when   | 
early_stopping_rounds | 
 If   | 
maximize | 
 If   | 
save_period | 
 when it is non-NULL, model is saved to disk after every   | 
save_name | 
 the name or path for periodically saved model file.  | 
xgb_model | 
 a previously built model to continue the training from.
Could be either an object of class   | 
callbacks | 
 a list of callback functions to perform various task during boosting.
See   | 
... | 
 other parameters to pass to   | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.