Calling machine learning model on matlab simulink
12 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello everyone, I'm using Simulink for running simulations, and I'd like to call a trained machine learning model (in my case, a TreeBagger) in MATLAB to make predictions in Simulink. However, I'm having some trouble with it. Has anyone already worked with this?
2 Kommentare
Tien
am 30 Nov. 2023
Not sure what was your specific issue, but you can have a look at the example of how to use a pretrained model to perform classification in Simulink:
Antworten (1)
Gayathri
am 24 Sep. 2024
I understand that you want to use a trained machine learning model from MATLAB to make predictions in Simulink. Let us assume that the trained model is named “net” in MATLAB. In that case, save the trained model to a “.mat” file for using it in Simulink using the following command.
save('trainedModel.mat', 'net');
Next, open the Simulink model and add a “Predict” block. Open the “Block Parameters” of the “Predict” block and select “Network from MAT file” in the “Network” section. Also browse the “trainedModel.mat” path in “File path”.
Please find a screenshot of the “Block Parameters” dialog box below.
For more information on “Predict” block please refer to the below link.
Also, in addition to this method, in MATLAB R2024b version there is a new function “exportNetworkToSimulink”, that helps create a Simulink model containing deep learning layer blocks corresponding to deep learning layer objects. It can be executed using the following command.
exportNetworkToSimulink(net,ModelName="myExportedModel")
For more information about “exportNetworkToSimulink”, please refer to the below link.
Hope you find this information helpful.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Classification Ensembles finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!