Can a cell array be training input for a neural network?

I have created a cell array with aprox 200 letters (capital A,B,C etc ).
Each letter is a matrix, cut from a picture of a car plate. Now my next task is to get those letters into a neural to train. But I have some questions :
a) Is this even possible? Meaning Cell ---> Neural Network b) If not how can I fix it? c) If yes , is it something simple that I am just too blind to see?
Excuse my bad English, I am not native.

댓글 수: 2

Are the arrays inside the cell array all the same size?
Not all of them no. Could you explain please? Trying to understand really.

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

답변 (1개)

TED MOSBY
TED MOSBY 2025년 5월 2일

0 개 추천

Hi,
You can use cell arrays, but you need to convert them into one of the formats which MATLAB's training functions will expect. Thus, you need to convert them into numeric arrays or datastores. You can then simply pass them in your neural network and go ahead with your training.
To know more about "datastore" refer here:
Here is more information on MATLAB's function "trainnet" used for training deep learning neural network:
Hope this helps!

댓글 수: 1

Note that if you are using a datastore then you will probably want to use https://www.mathworks.com/help/deeplearning/ref/augmentedimagedatastore.html and specify an output size that each image is to be automatically resized to. You can also use options to specify that rgb images are automatically converted to grayscale (or grayscale automatically converted to rgb)

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

카테고리

도움말 센터File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

질문:

2011년 5월 16일

댓글:

2025년 5월 3일

Community Treasure Hunt

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

Start Hunting!

Translated by