bonlime / keras-deeplab-v3-plus

Keras implementation of Deeplab v3+ with pretrained weights
MIT License
1.36k stars 428 forks source link

Re: Training own network using transfer learning #100

Open sharmarochan opened 5 years ago

sharmarochan commented 5 years ago

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. p1

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. p2

Please help if anyone has come across similar problem. Thanks