In neural net function, how can I see normalized input data?

12 visualizaciones (últimos 30 días)
kyeonghwan kim
kyeonghwan kim el 29 de Jul. de 2017
Comentada: Greg Heath el 31 de Jul. de 2017
The neural network function uses mapminmax function.
When I use neural network, I want to see normalized input data using mapminmax function.
But, I can't find normalized input data.
How can I see normalized input data?
Please help me.

Respuestas (1)

Greg Heath
Greg Heath el 29 de Jul. de 2017
You have to use MAPMINMAX and calculate them yourself.
The normalization inside of the training function is not accessible. For details you can look up
help mapminmax
doc mapminmax
Hope this helps
Thank you for formally accepting my answer
Greg
  6 comentarios
Greg Heath
Greg Heath el 31 de Jul. de 2017
Do not just look at just one output point when you have 94. The best measure I can think of is the normalized mean square difference
NMSD = mse(y2-y1)/var(t,1)
However, use the default 0.7/0.15/0.15 data division ratio and compute the differences for the trn, val and tst subsets.
Hope this helps.
Thank you for formally accepting my answer
Greg
Greg Heath
Greg Heath el 31 de Jul. de 2017
Thank you for this post. I really learned from it. As I result, see
http://www.mathworks.com/matlabcentral/... newsreader/view_thread/349217#955612
Thanks again,
Greg

Iniciar sesión para comentar.

Categorías

Más información sobre Deep Learning Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!