标签: r random-forest
我想知道是否可以在不同的测试集上重用随机森林的规则。
现在,我正在使用它:
rf <-randomForest(x=train,y=labels_train,xtest=test, ytest=labels_test, ntree=1000) save(rf,file = "rf_.RData")
我知道如何保存随机森林,但我不知道如何重复使用规则,对于几个测试集。