Effacer les filtres
Effacer les filtres

How can I Normalize test data by applying the mean and Standard deviation of the training data?

7 vues (au cours des 30 derniers jours)
I have spam data (training data and Test Data). This file contains a training set of size 3065 and a test set of size 1536. I standardized the features so that they have zero mean and unit variance i.e. calculated the mean and standard deviation of the training data. Now I have to apply those same parameters to normalize the test data without recalculating the mean and standard deviation of the test data and Im stuck on this part. Can you please help.

Réponses (3)

taruv harshita priya
taruv harshita priya le 20 Avr 2021
Matlab has an inbuilt function normalize
For the training data
[Normalized_training_data, c,s]= normalize(training data)
For testing data
Normalized_testing_data= normalize(testing data, 'center', c, 'scale', s)
I hope this helps!!!
Enjoy coding!!!
  1 commentaire
Steven Lord
Steven Lord le 20 Avr 2021
Note that while the normalize function was introduced prior to release R2021a, the ability to center and scale simultaneously via the 'center' and 'scale' methods and to return the centering and scaling parameters was introduced in that release.

Connectez-vous pour commenter.


Star Strider
Star Strider le 13 Avr 2014
Is the zscore function what you are looking for?

Image Analyst
Image Analyst le 13 Avr 2014
Do you mean
testData = (testData - trainingMean) / trainingStdDev;
???

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by