how to use feature matrix for neural network

2 visualizaciones (últimos 30 días)
debasmita bhoumik
debasmita bhoumik el 8 de Abr. de 2016
Respondida: Greg Heath el 10 de Abr. de 2016
I have made two feature matrices ( the purpose was to classify weather infection exist or not in a leaf) of size 80x16 and 40x16 respectively. The first one was for training images(80 images with 16 features) and other is test images(40 images with 16 features). I had also classified them accurately using SVM classifier. Now i want to classify those same images with the help of NEURAL NETWORK. Please suggest what can I do

Respuesta aceptada

Greg Heath
Greg Heath el 10 de Abr. de 2016
input = ...
target = [ repmat([1;0],1,80) repmat([0;1],1,40);
[ I N ] = size(input); % [ 16 120 ]
[ O N ] = size(target); % [ 2 120 ]
help patternnet
doc patternet
Search NEWSGROUP & ANSWERS
greg patternnet
Hope this helps.
Thank you for formally accepting my answer
Greg

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