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

1 vue (au cours des 30 derniers jours)
Michael McGeehan
Michael McGeehan le 26 Août 2021
Commenté : Michael McGeehan le 30 Août 2021
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.

Réponses (1)

Ive J
Ive J le 26 Août 2021
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 commentaire
Michael McGeehan
Michael McGeehan le 30 Août 2021
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?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Data Workflows dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by