Reputation: 1
I have a trained model in python whose inputs are standarized arrays, following the formula (data_point-mean)/std. Now I wish to test the network with new data:
With this in mind, how do I should standardize this new "artificial" data? Do I add them to the real unstandardized dataset, standardize all together and then remove the new data and reserve it for testing? Or do I have to standardize them separately without the original data?
Thanks.
Upvotes: 0
Views: 42