How to train ann with multiple input data also what methods i can adapt to get training data.
Thanking you.

 채택된 답변

Elysi Cochin
Elysi Cochin 2019년 2월 20일

0 개 추천

% Create a network (i have used feed-forward backpropagation)
net = newff(TrainFeatures, Trainlabels, num_of_hidden_Neurons);
% Set Train, Test and Validation Ration
net.divideParam.trainRatio = 70/100;
net.divideParam.valRatio = 15/100;
net.divideParam.testRatio = 15/100;
net = train(net, TrainFeatures, Trainlabels);

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기

질문:

2019년 2월 20일

답변:

2019년 2월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by