how to create dataset for classification and pattern recognition (neural network)

5 views (last 30 days)
Dear all I have a table of extracted features from the image. I need to create a dataset to use it in classification and pattern recognition. I have many images and i will group them according to disease stage to 4 or 5 groups or classes. could you help me how to create the dataset (inputs and targets) and if there some advice to create a good classifier and have a good results. thank you

Accepted Answer

Greg Heath
Greg Heath on 28 Aug 2015
For c classes: Create two matrices from N pairs of I-dimensional input vectors and c-dimensional {0,1} unit vector targets. The 1 in the target vectors indicates the class index integer (1:c). The relationship between the target matrix and the class index row vector is given by
target = ind2vec(classindices)
classindices = vec2ind(target)
Use patternnet or the obsolete (but still available) newpr.
See the examples in the help and doc documentation, e.g.,
help patternnet
doc patternnet
Also see some of my posts in the NEWSGROUP and ANSWERS:
greg patternnet
Hope this helps.
Thank you for formally accepting my answer
Greg
  2 Comments
hanem ellethy
hanem ellethy on 28 Aug 2015
thanks for your answer but still not clear for me I will follow your posts in the NEWSGROUP and ANSWERS and try to understand more. If not I will ask again. Best Regards
Eric T
Eric T on 9 Jun 2017
It is sparse so to get it in a format you can read:
full(ind2vec([1 1 2 2 3 3]))

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!