multidimensional array and deep learning
Afficher commentaires plus anciens
Hi,
I am trying to create a simple deep learning network but it 'appears' that they are not compatible with multidimensional arrays. I have a data-set of (30,30,97000) of positive example and (30,30,200000) negative examples. the names and pos/neg tags are in separate arrays. Need some direction on how to get the data into the prop format for deep learning.
Do i need to write a loop and save all of the files individually so i can build a data store afterwards? seems time inefficient...
quick mock-up example
good=rand(30,30,100); bad=rand(30,30,200);
g_label=(1:1:100); g_label(2,:)=1;
b_label=(101:1:300); b_label(2,:)=1;
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Deep Learning Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!