Is it possible to use non-image data as inputs for the Deep Network Designer App?

2 ビュー (過去 30 日間)
Michael McGeehan
Michael McGeehan 2021 年 8 月 26 日
コメント済み: Michael McGeehan 2021 年 8 月 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 Center および File ExchangeImage Data Workflows についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by