Replies: 1 comment 3 replies
-
It looks like this is already fixed in PyG 2.0.4. Can you upgrade to confirm? If you want to normalize features to range |
Beta Was this translation helpful? Give feedback.
3 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,
I'm trying to normalize the features in my data set and some of the features I use are negative. I noticed that the NormalizeFeatures transform doesn't work if there are any negative values in the input tensor.
for example, if I run my original tensor (with one negative value) I get the same tensor in return:
But if I change the sign for the negative value I get a normalized tensor:
Is there another transform that can normalize the features to a [-1,1] range instead of [0,1]?
Beta Was this translation helpful? Give feedback.
All reactions