xgfs / verse

Reference implementation of the paper VERSE: Versatile Graph Embeddings from Similarity Measures
http://tsitsul.in/publications/verse/
MIT License
128 stars 22 forks source link

question on node classification #2

Closed jwijffels closed 6 years ago

jwijffels commented 6 years ago

I had a look at the paper of VERSE but can't understand what is done in case of node classification. Are the embeddings used using liblinear to do a binary yes/no classification or what is being used there? Many thanks.

xgfs commented 6 years ago

Yes, essentially. VK classification is binary, Orkut is multi-class, and in YouTube labels overlap, so we use LabelPowerset from scikit-multilearn. Let me know if you have any further clarifications.

jwijffels commented 6 years ago

Ok, thanks. Clear now!