What should be the input shape of this? #284
Unanswered
Hassibayub
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey Experts,
I started working on my project of choice after a deep learning course predicting words from a sequence of images.
I collected the sequence of 15 images of
(128, 128, 3)
shapes that make up one of the words "Adam", "Daniel" (The best teacher🙌), and "Frank" (totally random words).I made a pandas data frame of two columns
images
andtarget
where oneimages
cell/element contains the list ofnumpy array
of 15 images[arrary(128,128,3), array(128,128,3)...]
and the target is the word (Adam, Daniel, Frank
).Now I want to apply an
LSTM/GRU
model because it has a sequence, but I am confused about what should be theinput shape
? length of the list is 15should the input
[ ]
?Beta Was this translation helpful? Give feedback.
All reactions