You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Hi,
I want to perform multi label image classification for my own dataset with mxnet. Here are some questions bother me.
How to prepare the recordIO database or the index file?
According to Extension: Mutliple Labels for a Single Image , the index file should have a fixed width of label field. What if my labels are not always the same width which is the common occasion. And will the labels of a single image be treated as a vector like (1,0,0,...,1,...0,...,1)? Or how can I prepare a binary vector label for the image data?
What loss function should I assign to the training phase? Will the SoftmaxOutput deal with multi-label? Or should I implement a sum of squares like loss function?
What evaluation criteria should I choose for the test or val phase? The accuracy metric is for single label.