How to predict responses of new data from a crossvalidated SVR model
14 次查看(过去 30 天)
显示 更早的评论
Hi there
I have trained and cross validated my Support Vector Machine regressor model (CValidated_Mdl) with KFold cross validation technique.
I know I can predict responses by using YFit= kfoldPredict(CValidated_Mdl) where YFit are the new responses predicted by the model.
I also have a new set of data(unseen by model) which I will like to use to test the performance of my CValidated_Mdl.
This new and unseen data is called X_test.
I am not sure of how to use the cross validated model (CValidated_Mdl) to predict responses from the X_test data
I have tried YFit= kfoldPredict(CValidated_Mdl, X_test) without success
Can you advise please
Thank You
0 个评论
采纳的回答
Dr. JANAK TRIVEDI
2023-2-2
You can use the predict function in MATLAB to predict responses using the cross-validated model (CValidated_Mdl) and the new data X_test. The code would look like this:
YFit = predict(CValidated_Mdl.Trained{1}, X_test);
Note that CValidated_Mdl.Trained{1} is the trained SVM model for the first fold in the cross-validation, you can use any fold that you think has the best performance.
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!