-
Hi,
The goal is to train a model that, given the node embeddings and the different edge sets, is capable of predicting layer-specific links. For example, predicting a type-1 association based on the information also present in other layers. Thanks a lot for any insight provided! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I guess you can also put them into a list of tensors: data.train_pos_edge_index = [layer1_train_pos_edge_index, layer2_train_pos_edge_index, ...] Does that solve your issues regarding readability? |
Beta Was this translation helpful? Give feedback.
I guess you can also put them into a list of tensors:
Does that solve your issues regarding readability?