Deploy ANN model Developed using ann fitting app using Matlab Compiler
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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!
0 Commenti
Risposte (1)
Steven Lord
il 9 Mag 2023
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.
Vedere anche
Categorie
Scopri di più su MATLAB Web App Server in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!