Training the neural network
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Fabio Retorta
el 28 de Mayo de 2016
Comentada: Fabio Retorta
el 29 de Mayo de 2016
How can I choose the percentage of the data to train the neural network?
Respuesta aceptada
Greg Heath
el 28 de Mayo de 2016
1. To list the net properties available for changing either
a. Create a new net without the ending semicolon
net = fitnet
b. List an existing net without the ending semicolon
net = net
2. To change a setting
net.property.parameter = newvalue;
3. Example
net.divideParam.trainRatio = newvalue;
Hope this helps
Thank you for formally accepting my answer
Greg
Más respuestas (0)
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!