Replies: 1 comment 2 replies
-
|
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
Thank you so much for this package. I want to use
GraphSage
to do unsupervised node embeddings for node regression. May I ask three questions:loss = F.binary_cross_entropy_with_logits(pred, batch.edge_label)
. How can I change the loss function? Could it be changed toloss = F.mse_loss(pred, batch.edge_label)
?GraphSage
, how can I use it to get node embedding? Bymodel(data.x, data.edge_index)
?test()
necessary? As I use my own customed data, how to settrain_mask
,val_mask
, andtest_mask
?Thank you so much!
Beta Was this translation helpful? Give feedback.
All reactions