Borrar filtros
Borrar filtros

How to train ann with multiple input data

3 visualizaciones (últimos 30 días)
Dr. Immanuel J
Dr. Immanuel J el 20 de Feb. de 2019
Respondida: Elysi Cochin el 20 de Feb. de 2019
How to train ann with multiple input data also what methods i can adapt to get training data.
Thanking you.

Respuesta aceptada

Elysi Cochin
Elysi Cochin el 20 de Feb. de 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);

Más respuestas (0)

Categorías

Más información sobre Deep Learning Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by