Is there an error in the documentation of the Neural Network Toolbox 4.0.2 (R13) about the default training function of perceptron networks?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I use the following command to open a documentation page of the Neural Network Toolbox:
web([docroot '\toolbox\nnet\percep10.html']);
At the bottom of the page, it reads:
Note that the default training function for networks created with newp is trains. (You can find this by executing net.trainFcn.)
However, I found the above statement to be incorrect:
net = newp([0 1; -2 2],1);
net.trainFcn
The default training function, as shown in the output, is TRAINC instead of TRAINS:
ans =
trainc
Respuesta aceptada
MathWorks Support Team
el 27 de Jun. de 2009
This enhancement has been incorporated in Release 2006a (R2006a). For previous product releases, read below for any possible workarounds:
This is an error within the documentation for the Neural Network Toolbox 4.0.2 (R13) within the "Training (train)" page in the "Creating a Perceptron (newp)" section. The documentation should read as follows:
Note that the default training function for networks created with newp is trains. (You can find this by executing net.adaptFcn.)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Define Shallow Neural Network Architectures en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!