Training the neural network

2 次查看(过去 30 天)
How can I choose the percentage of the data to train the neural network?

采纳的回答

Greg Heath
Greg Heath 2016-5-28
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Deep Learning Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by