How can i give a trained model some images as an input ?
4 次查看(过去 30 天)
显示 更早的评论
I trained a model with classification learner to classify fruits. Now i want to test my model. How can i give the model some images as an input ?
0 个评论
采纳的回答
Mukul Rao
2017-12-5
Hello, in order to use the trained model to predict new data, you will first have to export the trained model to the workspace. You can click on the "Export Model" drop-down in the Classification Learner App, and select the first option. Once you have the trained model in the MATLAB workspace, you can call its "predict" method and supply new image data to make predictions.
3 个评论
Mukul Rao
2017-12-5
Hi Lukas, yes that makes sense. You might want to take a look at this example that demonstrates the workflow. Using the bag of features, you will have to create an "imageCategoryClassifierObject" with the "trainImageCategoryClassifier" function. You can call the "predict" method on the classifier object and plug in the the new image data set as the input without having to convert it to a table. I believe you might have referred the predict method for a different classifier class in the documentation.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!