Filter löschen
Filter löschen

Training the neural network

1 Ansicht (letzte 30 Tage)
Fabio Retorta
Fabio Retorta am 28 Mai 2016
Kommentiert: Fabio Retorta am 29 Mai 2016
How can I choose the percentage of the data to train the neural network?

Akzeptierte Antwort

Greg Heath
Greg Heath am 28 Mai 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

Weitere Antworten (0)

Kategorien

Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by