-
Notifications
You must be signed in to change notification settings - Fork 187
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
Add support of dynamic graphs and code for ROLAND. #23
base: dynamic
Are you sure you want to change the base?
Conversation
|
||
## Examples on Heterogenous Graph Snapshots | ||
```bash | ||
Under development. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can start writing the example, without worrying about heterogenous layer yet.
# compute the MRR using 1000 randomly generated negative edges | ||
# + 3 existing positive edges. | ||
# Use 100 ~ 1000 for fast and reliable results. | ||
cfg.metric.mrr_num_negative_edges = 1000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How can we set negative edges as all the edges?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can set cfg.metric.mrr_method = 'all'
to forcely enable it, but typically we don't use all negative edges since it's super slow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please see the comments
No description provided.