DO i need to process the unit8 data when i use "trainautoencoder" function?

2 visualizaciones (últimos 30 días)
I want to use the SAE net to processing my image data. But my data is unit8 format,and should I use "mapminmax" funtion to make the data betwen[-1,1]? Thanks all.

Respuesta aceptada

Massimo Zanetti
Massimo Zanetti el 9 de Oct. de 2016
Editada: Massimo Zanetti el 9 de Oct. de 2016
The trainAutoencoder accepts inputs of type single, double (and cell).
So, just cast your data as double
A=double(A);
and then run the function.
  5 comentarios
Walter Roberson
Walter Roberson el 10 de Oct. de 2016
Which way gives you better results for your purpose?
Liang Seacom
Liang Seacom el 10 de Oct. de 2016
funny result,the data*10 is the best. DATA*10 > DATA > mapminmax(DATA);

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with Deep 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!

Translated by