multidimensional array and deep learning
显示 更早的评论
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;
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!