-
-
Notifications
You must be signed in to change notification settings - Fork 247
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
Hope Algorithm Implementation Question #158
Comments
Does anyone share the same problem or has a different point of view or there something i am missing in the paper |
It seems like you're trying to describe a Python implementation of a method for generating a target similarity matrix and performing a rescaled decomposition, likely for a graph embedding or matrix factorization task. |
import numpy as np class GraphEmbedding:
|
In the paper:Asymmetric Transitivity Preserving Graph Embedding,the authors state that they will not calculate S in this part
so that in this algorithm, they do not explicitly perform the polynomial operation on adjacency matrix in Ml and Mg, but in the implementation the S matrix is calculated fully as this shows,
I can't understand it so anyone please could explain this to me
The text was updated successfully, but these errors were encountered: