How can I prepare my dataset to fed into a stacked Autoencoder
    9 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
With reference to this link https://in.mathworks.com/help/deeplearning/ug/train-stacked-autoencoders-for-image-classification.html
I am trying to implement stacked autoencoder for image classification. But I am not able to understand how can I prepare my dataset to fed into a autoencoder. As it is being said in this link that we need to  reshape the training images into a matrix, how can it be done? Please provide a sample code. 
0 comentarios
Respuestas (1)
  Ranjeet
    
 el 27 de Jun. de 2023
        Hi Debojit,  
The guidance on how to prepare dataset to fed into a stacked network has been provided in the following example –  
However, I am rewriting the sample code that serves the purpose –  
% Get the number of pixels in each image 
imageWidth = 28; 
imageHeight = 28; 
inputSize = imageWidth*imageHeight; 
% Load the test images 
[xTestImages,tTest] = digitTestCellArrayData; 
% Turn the test images into vectors and put them in a matrix 
xTest = zeros(inputSize,numel(xTestImages)); 
for i = 1:numel(xTestImages) 
    xTest(:,i) = xTestImages{i}(:); 
end 
whos xTest xTestImages;
size(xTestImages{1})
You may find the code snippet in the example as well. The second last line in the code converts an image ‘xTestImages{i}’ into a vector and store in a matrix ‘xTest’. 
0 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!