This commit is contained in:
Tatsuhito KATO 2018-12-28 01:36:47 +09:00 committed by Jiaming Yuan
parent be948df23f
commit 15fe2f1e7c

View File

@ -576,8 +576,8 @@ print(class(rawVec))
bst3 <- xgb.load(rawVec)
pred3 <- predict(bst3, test$data)
# pred2 should be identical to pred
print(paste("sum(abs(pred3-pred))=", sum(abs(pred2-pred))))
# pred3 should be identical to pred
print(paste("sum(abs(pred3-pred))=", sum(abs(pred3-pred))))
```
```