Clear Filters
Clear Filters

Calling machine learning model on matlab simulink

26 views (last 30 days)
Meriem zanoun
Meriem zanoun on 30 Nov 2023
Answered: Gayathri on 24 Sep 2024 at 6:44
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 Comments
Tien
Tien on 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:
Meriem zanoun
Meriem zanoun on 6 Dec 2023
Thank you for your response. Unfortunately, I'm dealing with a different issue here.

Sign in to comment.

Answers (1)

Gayathri
Gayathri on 24 Sep 2024 at 6:44
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.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!