Training the neural network

4 views (last 30 days)
Fabio Retorta
Fabio Retorta on 28 May 2016
Commented: Fabio Retorta on 29 May 2016
How can I choose the percentage of the data to train the neural network?

Accepted Answer

Greg Heath
Greg Heath on 28 May 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

More Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!