Skip to content
Discussion options

You must be logged in to vote

the model employs all edges, encompassing those designated for validation and testing

Not all edges are employed during training. Instead, only the training edges are visible as the edge_index corresponds to the train_edge_index, see

row, col = kwargs['train_edge_index']
edge_type = kwargs['train_edge_type']
row, col = torch.cat([row, col], dim=0), torch.cat([col, row], dim=0)
edge_index = torch.stack([row, col], dim=0)

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@chenshentemple
Comment options

Answer selected by chenshentemple
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants