-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Training on custom dataset and Inference details #16
Comments
针对自定义的数据集,要根据标签重新产生邻接矩阵adj.pkl和词向量glove.pkl,可以参考"Multi-Label Image Recognition with Graph Convolutional Networks"这篇论文;推理时间我没关注过,不知道;网络结构肯定可以随自己改的啊。 |
Can you please write how to train on a custom dataset in English so that non-Chinese users can understand please. Thank you |
Sorry for my English. The most important files are glove.pkl and adj.pkl. Glove.pkl contains the word embedding vectors of labels. Adj.pkl contains an adjacency matrix representing the structure of a graph P, each node Pij = Mij / Ni, Ni represents the total number of occurrences of each label, Mij represents the number of occurrences of label pairs in the training data set. The input of the model consists of image features, glove.pkl and adj.pkl. Plesase refer to "Multi-Label Image Recognition with Graph Convolutional Networks" if you want more details. |
Thanks, I understand the algorithm now but for the implementation, what code do I have to change if I want to use a new dataset? Or do I just need to follow the format of RAPv2? |
I have no idea, I am done with deep learning, you know life is not easy. |
@2014gaokao Hi thanks for opensourcing your work appreciate the effort , i have few queries
Thanks in advance
The text was updated successfully, but these errors were encountered: