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.

답변 (1개)

Ive J
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
];
  댓글 수: 1
Michael McGeehan
Michael McGeehan 2021년 8월 30일
Thanks for your response. The data options for the input layer require me to specify a folder with images. Is there any way around this?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by