How to reshape (digitTrain4DArrayData) inbuilt number dataset provided in MATLAB ?
10 views (last 30 days)
Show older comments
Sudheer Dunna
on 27 Apr 2020
Commented: debojit sharma
on 9 Jun 2023
digitTrain4DArrayData data set is having dimension of 28 * 28 * 1 * 5000 (5000 samples) . How can we reshape it into 784 * 5000, to train it using neural network pattern recognizer in matlab for ANN.
0 Comments
Accepted Answer
Srivardhan Gadila
on 29 Apr 2020
Edited: Srivardhan Gadila
on 29 Apr 2020
[XTrain,YTrain] = digitTrain4DArrayData;
reshapedXTrain = reshape(XTrain,784,5000);
3 Comments
debojit sharma
on 9 Jun 2023
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.
More Answers (0)
See Also
Categories
Find more on Naive Bayes in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!