Fixed typos.
This commit is contained in:
parent
c135703655
commit
5efc1ee3a4
@ -64,8 +64,8 @@ raw = xgb.save.raw(bst)
|
|||||||
# load binary model to R
|
# load binary model to R
|
||||||
bst3 <- xgb.load(raw)
|
bst3 <- xgb.load(raw)
|
||||||
pred3 <- predict(bst3, test$data)
|
pred3 <- predict(bst3, test$data)
|
||||||
# pred2 should be identical to pred
|
# pred3 should be identical to pred
|
||||||
print(paste("sum(abs(pred3-pred))=", sum(abs(pred2-pred))))
|
print(paste("sum(abs(pred3-pred))=", sum(abs(pred3-pred))))
|
||||||
|
|
||||||
#----------------Advanced features --------------
|
#----------------Advanced features --------------
|
||||||
# to use advanced features, we need to put data in xgb.DMatrix
|
# to use advanced features, we need to put data in xgb.DMatrix
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user