using 2D data as input for a neural network

1 visualización (últimos 30 días)
59morgan
59morgan el 23 de Abr. de 2016
Comentada: 59morgan el 25 de Abr. de 2016
have data that i'd like to use as input for a pattern recognition neural net project
the data comes as a series of tables, each of which needs to be input all at once, rather than one row or one col at a time
so, I figure it needs to be "spooled" out to one long array, and the net will need at least that many input neurons
so, two questions:
1) does it matter how it gets spooled out? say, column by column, row by row, or either as long as I'm consistent?
2) the tables are different sizes, should I just pad the smaller ones out with zeros? nulls?
thanks

Respuesta aceptada

Greg Heath
Greg Heath el 24 de Abr. de 2016
0. An input layer node is not a neuron. Only hidden and output layer nodes are neurons.
1. Use the colon operator matrix(:) to convert matrices to a single column.
2. No need to pad with zeros or nulls. Just stack the converted matrices ([a(:);b(:);...;z(:)]
Hope this helps.
Thank you for formally accepting my answer
Greg

Más respuestas (0)

Categorías

Más información sobre Deep Learning Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by