deploying sim function
이전 댓글 표시
I believe neural network sim function is supported in deployment, but when I tried to deploy a function which uses a pre-trained network, it failed.
Here's what I have done:
1. Train a network 'net' and save it in 'testnet.mat'.
2. The code of 'test.m':
%#function network
load testnet.mat;
net = network(net);
p = sim(net,[1]);
And I keep getting error message like:
No appropriate method, property, or field delays for class nnetWeight. MATLAB:noSuchMethodOrField
Please tell me what's wrong with my code or deployment.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!