edge_label_index #3862
Answered
by
rusty1s
RetrosynthesisAI
asked this question in
Q&A
edge_label_index
#3862
-
Hi, What is the code for creating the following: edge_label_index. I was able to use the load_edge_csv() to create the edge_index and edge_label variables, as well as use them in HeteroData(). |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Jan 17, 2022
Replies: 1 comment
-
The |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
RetrosynthesisAI
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
RandomLinkSplit
code takes care of creatingedge_label_index
. That is, it will split the originaledge_index
matrix into edges used for message passing (edge_index
) and edges used for supervision (edge_label_index
).