Neural Network ToolBox : Proper function to train multilabel data (Backpropogation )
조회 수: 1 (최근 30일)
이전 댓글 표시
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
Greg Heath
2014년 3월 25일
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.
채택된 답변
Greg Heath
2014년 3월 20일
>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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!