Effacer les filtres
Effacer les filtres

How to train ann with multiple input data

3 vues (au cours des 30 derniers jours)
Dr. Immanuel J
Dr. Immanuel J le 20 Fév 2019
How to train ann with multiple input data also what methods i can adapt to get training data.
Thanking you.

Réponse acceptée

Elysi Cochin
Elysi Cochin le 20 Fév 2019
% 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);

Plus de réponses (0)

Catégories

En savoir plus sur Deep Learning Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by