Hello,
using the
Merge layer to create multi-input models, is it still possible to train via
fit_generator?
Let's say I have two input branches. This code
model.fit_generator([generator1, generator2])
gives me the following error message:
Exception: Error when checking model input: data should be a Numpy array, or list/dict of Numpy arrays. Found: <my.project.MyGenerator object at 0x2ae8364d868>
I'm aware that a list of Numpy arrays would solve the problem (and using
model.fit() at the same time). Generators are just more convenient.