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!