I am training deeplab architecture on my data set. To do so I zipped both image and mask images and passed as an argument to model.predict. but getting error. Screenshot of the same is attached.
To resolve it i also tried def combine_generator(gen1, gen2):
while True:
yield(gen1.next(), gen2.next())
which was given as one of the solution but it too is giving error.
Please help if anyone has come across similar problem. Thanks
I am training deeplab architecture on my data set. To do so I zipped both image and mask images and passed as an argument to model.predict. but getting error. Screenshot of the same is attached.
To resolve it i also tried def combine_generator(gen1, gen2): while True: yield(gen1.next(), gen2.next())
which was given as one of the solution but it too is giving error.
Please help if anyone has come across similar problem. Thanks