How to deal Found unsupported class for variable using function 'load'. The value at 'mynet1.net' is unsupported for code generation.
19 次查看(过去 30 天)
显示 更早的评论
I am running a deep learning model to control a system that has been designed using Deep netwoek designer. However, the simulink model gave me an error in this type"
Found unsupported class for variable using function 'load'. The value at 'mynet1.net' is unsupported for code generation."
"Use the command 'whos -file NET.mat' to view the variables in the MAT file."
The code in the block function is given by:
function out = predict(in)
x1=in(1);
x2=in(2);
persistent mynet1;
if isempty(mynet1)
mynet1 = load("NET.mat","net","-mat");
end
out = predict(mynet1,[x1;x2])
end
0 个评论
回答(1 个)
Sayan Saha
2022-5-19
Deep learning networks aren't supported to be loaded via "coder.load" for code generation. You should use "coder.loadDeepLearningNetwork" instead. Here is a reference page that shows the workflow: https://www.mathworks.com/help/coder/ug/load-pretrained-networks-for-code-generation.html
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!