how to generate simple feed-forward code with accuracy?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
HAKD
el 2 de Abr. de 2015
Comentada: Greg Heath
el 5 de Abr. de 2015
Hai. I am new to Matlab and Artificial Intelligent field. Therefore, I need your kind help to generate a simple feed forward for classification. I tried to use simple feed forward coding in Matlab R2012b but I do not know how to check the accuracy. I ve tried different code but it always lead to many errors. I do not know how to fix. I have attached my extracted features data. I need to classify 4 classes.
Previously, I have used this feed-fwd coding but i dont know how to check the accuracy. Plus, what is mean by the performance value?
clear all;
clc;
x = xlsread('mmg_selinp.xlsx');
t = xlsread('mmg_masout.xlsx');
x = x';
t = t';
net = feedforwardnet([15 10],'traingdx')
net = train(net,x,t);
view(net)
y = net(x);
perf = perform(net,y,t)
Sorry, i am really new to Matlab and AI. Your help is highly appreciated. I am not sure whether there s problem with my data. Thank you in advance.
0 comentarios
Respuesta aceptada
Greg Heath
el 4 de Abr. de 2015
Use patternnet for classification.
help patternnet
doc patternnet
For c classes, the target columns are obtained from eye(c).
Search the NEWSGROUP and ANSWERS using
greg patternnet
Thank you for formally accepting my answer
Greg
PS Include "neural" in you tags
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!