You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for your code which helps me a lot.
And I want to ask a question about StandardScaler:
When creating a data loader, shouldn't the mean and standard deviation of the training set be used for validation and test set standardization?
I see in the code that the validation set uses the mean and standard deviation of the validation set, and the test set uses the mean and standard deviation of the test set.
Hope for your reply. Thanks!
The text was updated successfully, but these errors were encountered:
Yeah it probably should in general as good practice. Most of the datasets historically we/others have used though have had similar distributions so it hasn't really affected things. But we will probably fix in an upcoming PR.
Thanks for your code which helps me a lot.
And I want to ask a question about StandardScaler:
When creating a data loader, shouldn't the mean and standard deviation of the training set be used for validation and test set standardization?
I see in the code that the validation set uses the mean and standard deviation of the validation set, and the test set uses the mean and standard deviation of the test set.
Hope for your reply. Thanks!
The text was updated successfully, but these errors were encountered: