Nov 4 · 1 min read
Interesting, that’s the same we are doing at Smile (where I’m working) — we are working on sign language recognition.
Are you sure that your “input” shape is well formed ? Maybe you can show me the first layer code.
It should be more or less:
model.add(keras.layers.TimeDistributed(xxx, input_shape=(5,224,224,3))where xxx is the input layer or input model you want to distribute.
EDIT: I understand that you’re working with ImageDataGenerator that is not made for that. You’ll need to use your own generator. I will publish the next part soon, there is a simple VideoFrameGenerator that I developed. It may help you
