We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, I am trying to re-implement SDNE code but I got stuck when reading code. Could you explain for me these below lines: -
GraphEmbedding/ge/models/sdne.py
Line 162 in 7de7a09
get('weight',1)
1
Line 169 in 7de7a09
A_
Line 172 in 7de7a09
Line 125 in 7de7a09
L[i:j, :]
L[index][:, index].todense()
index = [i:j]
Line 46 in 7de7a09
L = y_true
Y = y_pred
Thank your helping!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I am trying to re-implement SDNE code but I got stuck when reading code. Could you explain for me these below lines:
-
GraphEmbedding/ge/models/sdne.py
Line 162 in 7de7a09
get('weight',1)
. Why does it has1
value here?GraphEmbedding/ge/models/sdne.py
Line 169 in 7de7a09
A_
and its purpose?GraphEmbedding/ge/models/sdne.py
Line 172 in 7de7a09
GraphEmbedding/ge/models/sdne.py
Line 125 in 7de7a09
L[i:j, :]
for a mini batch to train. But what is meaning ofL[index][:, index].todense()
withindex = [i:j]
GraphEmbedding/ge/models/sdne.py
Line 46 in 7de7a09
L = y_true
andY = y_pred
?Thank your helping!
The text was updated successfully, but these errors were encountered: