-
Hi all, I'm using PyG to make graph regression in a problem. I would like to ask you the following question. Thank you in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I think it is best to normalize each target separately, e.g., via mean, std = dataset.data.y.mean(dim=0, keepdim=True), dataset.data.y.std(dim=0, keepdim=True)
for batch in dataset:
batch.y = (batch.y - mean) / std |
Beta Was this translation helpful? Give feedback.
I think it is best to normalize each target separately, e.g., via