-
Notifications
You must be signed in to change notification settings - Fork 4
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
question about code #1
Comments
activeMask = false(n,n,tMax-1); Please see my code comments. |
This is correct. We do not try to predict links to nodes that have just become active at time t+1 (new nodes). Without any information about those nodes, any predictions we make would be to a "generic" new node since we don't have any information regarding the new node. See Section 5 of Yang et al. (2015) for discussion on this. Yang, Y., Lichtenwalter, R. N., & Chawla, N. V. (2015). Evaluating link prediction methods. Knowledge and Information Systems, 45, 751-782. https://www3.nd.edu/~dial/publications/yang2015evaluating.pdf |
it is a nice work, but i have some questions to ask you, wish you can help me to solve.
code from dlpthresCurve file:
now we suppose t=1,so 'nodeNew' is edge that doesn't exist at time t=1;'ActiveMask' is the fully connected condition of activated nodes at t=1. Is ’nodeNew&activeMask‘ limiting new connections at t+1=2 to active nodes at t=1 ?
The text was updated successfully, but these errors were encountered: