Neural Network ToolBox : Proper function to train multilabel data (Backpropogation )
1 view (last 30 days)
Show older comments
Hello,i m a matlab beginner..
Which Inbuilt functions are suitable to train multilabel dataset ? using backpropogation ?
i also want to :
1.take outputs of that function at output layer and then modify it (while training) after each epochs
2.after getting output , define our custom error measures like hamming loss ,ranking loss etc (specifically for multilabel classification)
i know how to modify it , but is it feasible to do all these things with inbuilt function?
if yes,then which function should be used here ? and where i can get its tutorials ?
Thank you for your consideration... Please Help !!
7 Comments
Greg Heath
on 25 Mar 2014
You are wrong in trying to manipulate after each epoch. It just makes training take longer. Perhaps using the entropy fnction for non-mutually exclusive classes will help.
Accepted Answer
Greg Heath
on 20 Mar 2014
>Which Inbuilt functions are suitable to train multilabel dataset ? using backpropogation ?
Multilabel is just classification with non-exclusive classes.
Use patternnet with targets in {0,1}
HOWEVER, the relation between target and class indices is NO LONGER given by vec2ind and ind2vec.
>i also want to :
>1.take outputs of that function at output layer and then modify it (while training) after each epochs
You will have to train in a loop over 1 epoch design stages. Training time could be a problem.
>2.after getting output , define our custom error measures like hamming loss ,ranking loss etc (specifically for multilabel classification)
Wikipedia defines hamming loss. Never heard of ranking loss. How do you define it?
>i know how to modify it , but is it feasible to do all these things with inbuilt function? if yes,then which function should be used here ? and where i can get its tutorials ?
help patternnet
doc patternnet
Hope this helps.
Thank you for formally accepting my answer
Greg
0 Comments
More Answers (0)
See Also
Categories
Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!