How to predict unknown data with a RegressionPartitionedSVM-model
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello,
Is it possible to use the result of fitrsvm(X,Y,'KFold',5) for predicting unknown, new data? If you have a normal RegressionSVM-model you can use the predict function for new data, but for RegressionPartitionedSVM-model you only have the kfoldpredict option, whose only input is the model itself.
0 commentaires
Réponses (2)
Lucio Cetto
le 12 Sep 2019
Hi,
Let me add to what Shubh already said, the partitioned model contains several models, so which one should be used for prediction? Partitioned models should only be used to asses the predictive performance of your modeling approach but not for pedicting on new data, it's better to train a new model using all the data once you are happy with the cross-validated results.
Lucio
0 commentaires
Shubh Sahu
le 28 Août 2019
Hello,
There is no dedicated function which can predict unknown data with a regression Partitioned SVM model, but we are still working on it to enhance the forecast function so that it can be done. You can try these steps
mymodel=fitrsvm(X,Y,'KFold',5);
yHat = kfoldPredict(mymodel)
%estimate yHAt so that you can see the predicted value is approximately equal to observed
You can write manually code for it. Here are some links that you can refer to:
0 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!