How to train ann with multiple input data

4 ビュー (過去 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 Center および File ExchangeDeep Learning Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by