Deploy ANN model Developed using ann fitting app using Matlab Compiler

2 次查看(过去 30 天)
Hi everyone,
I have developed an ANN model using the ANN fitting app (used nnstart at the command line to get the app interface). I am trying to come up with a code before I deploy it using Matlab compiler. I saved the exported ANN model the workspace as trainedmodel. I then saved it to path as myANN. trainedmodel is a structure containing 'Network'. The code I'm using is below
function predict = mypredict(test_data)
load('myANN')
pred = sim(trainedmodel.Network, test_data);
end
I keep getting an error. For the code above, I want to load myANN which contains trainedmodel. I am then extracting the 'Network' from it and making new predictions on new data called test_data. Error read" mypredict requires more input arguments to run. After this I will package it as a standalone program using the Matlab compiler.
Any ideas? Thanks!

回答(1 个)

Steven Lord
Steven Lord 2023-5-9
If you are attempting to compile code using MATLAB Compiler that calls load to load an object from a MAT-file and there is no indication in the code itself that MATLAB Compiler needs to package the code, the dependency analyzer may not be able to detect that it needs to include the definition of the class. In this case use one of the workarounds in the "Fixing Callback Problems: Missing Functions" section of this documentation page, as this workflow is described by the Tip in that section of that documentation page.
  1 个评论
Learning
Learning 2023-5-9
I am a bit confused since I’m still new to Matlab. The thing is I am able to make predictions using
pred = sim(trainedmodel.Network, test_data.
Any specific code example? Thank you!

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Getting Started with Microsoft .NET 的更多信息

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by