Neuronal network inputs and outputs

조회 수: 7 (최근 30일)
Juan Pablo Guamn Bernal
Juan Pablo Guamn Bernal 2021년 5월 10일
댓글: Juan Pablo Guamn Bernal 2021년 5월 13일
Hi everyone, I made a fitting NN, and I have the input data on a excel file with 18 variables and the 6 outputs in another file, everything looks like work pretty well, but every tiem I called the network, it only works when I placed just one input variable, but It should work just when I put the 18 variables values intup, am I right? Am I getting something wrong?, thanks

채택된 답변

Divya Gaddipati
Divya Gaddipati 2021년 5월 13일
Your function expects a single input argument. But, you are giving 16 inputs, which is why it's failing.
You can try the following to resolve your issue:
% Input should be a matrix
y1 = myNeuralNetworkFunction([1:16]);

추가 답변 (0개)

카테고리

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

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by