Azzera filtri
Azzera filtri

how to use feature matrix for neural network

2 visualizzazioni (ultimi 30 giorni)
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

Risposta accettata

Greg Heath
Greg Heath il 10 Apr 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

Più risposte (0)

Categorie

Scopri di più su Sequence and Numeric Feature Data Workflows in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by