multidimensional array and deep learning
Show older comments
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;
Accepted Answer
More Answers (0)
Categories
Find more on Deep Learning Toolbox 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!