How to reshape (digitTrain4DArrayData) inbuilt number dataset provided in MATLAB ?
10 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Sudheer Dunna
il 27 Apr 2020
Commentato: debojit sharma
il 9 Giu 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 Commenti
Risposta accettata
Srivardhan Gadila
il 29 Apr 2020
Modificato: Srivardhan Gadila
il 29 Apr 2020
[XTrain,YTrain] = digitTrain4DArrayData;
reshapedXTrain = reshape(XTrain,784,5000);
3 Commenti
debojit sharma
il 9 Giu 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.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Naive Bayes in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!