Generating a graph from neural network

4 visualizaciones (últimos 30 días)
Reff
Reff el 19 de Abr. de 2020
Comentada: Ameer Hamza el 19 de Abr. de 2020
Hi. How to generate a graph from neural network train tool?
Let say for y-axis = MSE and Accuracy, x-axis = number of neuron.
Thanks in advance.

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 19 de Abr. de 2020
I think if you want to use neural network train tool, then you will need to configure each network separately and save their accuracy and MSE values. It will be easier if you write the code to train your network and then use a for-loop to try different numbers of neurons. Following code shows an example
[x,t] = simplefit_dataset;
N = [1 2 3 5 10 20]; % number of neurons to try
MSE = zeros(size(N));
for i=1:numel(N)
net = feedforwardnet(N(i));
net = train(net, x, t);
y = net(x);
MSE(i) = perform(net,y,t);
end
plot(N, MSE);
xlabel('Neurons');
ylabel('MSE');
  4 comentarios
Reff
Reff el 19 de Abr. de 2020
error line at [a',b'] = simplefit_dataset;
dimension matrix a & b are
a: 9x60
b:9x1
Ameer Hamza
Ameer Hamza el 19 de Abr. de 2020
Reff, I added this line
[a',b'] = simplefit_dataset;
to load an example dataset. If you already have variables a and b then try to run this code after removing this line.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Sequence and Numeric Feature Data Workflows en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by