필터 지우기
필터 지우기

Neural Network in Matlab App Designer

조회 수: 7 (최근 30일)
Justin Primero
Justin Primero 2019년 2월 12일
댓글: Fernando Hernandez 2022년 4월 13일
Is it possible to incorporate a Neural Network into an app created from the Matlab App Designer?
  댓글 수: 6
Kojiro Saito
Kojiro Saito 2019년 11월 8일
편집: Kojiro Saito 2019년 11월 9일
The structure to be input in predict might be different.
How about changing as the follows?
function startupFcn(app)
app.net = load("C:\Predictor Demanda S.N.I\net\netdia.mat");
app.net = app.net.net;
end
If the above does not work, add a breakpoint in the line of
Y_predict = predict(app.net,Xp_prediccion);
and pause at this line. Then, what is a variable type of app.net? You can konw the variable type by whos command.
Juan Carlos Pozuelos Buezo
Juan Carlos Pozuelos Buezo 2019년 11월 8일
Thanks a lot. It works ok ?

댓글을 달려면 로그인하십시오.

채택된 답변

Kojiro Saito
Kojiro Saito 2019년 2월 12일
Yes, Neural Network (both shallow and deep neural networks) works with applications created by AppDesigner both for training and predict. Could you specify your use case, if possible?
  댓글 수: 4
Justin Primero
Justin Primero 2019년 2월 12일
This has been very helpful. Thanks a lot, Kojiro Saito.
Fernando Hernandez
Fernando Hernandez 2022년 4월 13일
Estoy creando un calisificador de sonidos cardiacos, mediante el modulo max4466 el cual es procesado con filtros analogicos y posteriormente digitalizado para su procesamiento digital. Una vez realizado esto, entrara a una red autoencoder, la cual tendra una base de datos con sonidos cardiacos, y asi determinar en que categoria entra el sonido, si en sanos o no sanos.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Pablo Salaverria
Pablo Salaverria 2019년 6월 10일
Dear all,
while creating an app using app designer I am not able to compeltelly deploy my trainned CNN. My main issue is wiht the function classify which should be valid with:
[YPred]= classify(app.net,app.imds1);
Where app.net is the trainned CNN, app.imds1 is the imageDatastore where all the images that I want to classify are stored.
The error message that I got is:
Error using classify (line 123)
Requires at least three arguments.
Meaning that the function classify is using a 2nd options instead of the one that I want it to use. Is there a way to make it work?
  댓글 수: 1
Kojiro Saito
Kojiro Saito 2019년 6월 11일
I have just answered your question in this link. Please take a look.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by