Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. library(xgboost)
  2. xgboostModel = xgboost(data=trainingSet, label = trainingLabels, max.depth = 20, eta=0.5, nthread=8, nround=30, objective="reg:linear")
  3. xgboostPredictions = predict(xgboostModel, validationSet)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement