Best practice for data normalization when using import model from Keras to predict ?
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I have train a deep learning model in Keras where my input data is normalize by using the standard scaler
If I import that model into matlab to use it to predict I also have to use the standard scaler.
Now I have two choices in mind to do this
1/ Call the standard scaler from python
2/ Use Matlab built in function
My Matlab version is 2020a
What choice should I proceed with and how to implement it
Thank you very much
0 comentarios
Respuestas (1)
Madhav Thakker
el 15 de Sept. de 2020
Hi Tuong,
I understand that you want to do the preprocessing as done with the training data by using StandardScaler of sklearn. The same functionality can be done with MATLAB zscore. To replicate the behavior of the scipy function, you will have to set flag input as 1, to use population standard deviation.
Hope this helps.
0 comentarios
Ver también
Categorías
Más información sobre Get Started with Statistics and Machine Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!