Is it possible to use non-image data as inputs for the Deep Network Designer App?
1 次查看(过去 30 天)
显示 更早的评论
I have a 3xn vector of inputs that I would like to use with the Deep Network Designer app. However, it seems that the input layers are generally geared towards image classification. Is there a way to use the numerical data in matrix format as inputs?
Thank you.
0 个评论
回答(1 个)
Ive J
2021-8-26
Technically yes you can, I assume something like this would work:
dlData = reshape(data', [1, 1, size(data, 2), size(data, 1)]);
then your layers would be something like:
layers = [imageInputLayer([1 1 size(data, 2)]);
% other layers
];
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Data Workflows 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!