필터 지우기
필터 지우기

How to train ann with multiple input data

조회 수: 3 (최근 30일)
Dr. Immanuel J
Dr. Immanuel J 2019년 2월 20일
답변: Elysi Cochin 2019년 2월 20일
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일
% 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개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by