Mask_RCNN icon indicating copy to clipboard operation
Mask_RCNN copied to clipboard

TypeError: 'NoneType' object is not iterable

Open prince0310 opened this issue 3 years ago • 1 comments

def make_parallel(self): """Creates a new wrapper model that consists of multiple replicas of the original model placed on different GPUs. """ # Slice inputs. Slice inputs on the CPU to avoid sending a copy # of the full inputs to all GPUs. Saves on bandwidth and memory. input_slices = {name: tf.split(x, self.gpu_count) for name, x in zip(self.inner_model.input_names, self.inner_model.inputs)}

error in the bold line

prince0310 avatar May 15 '22 15:05 prince0310

@prince0310 I have exactly the same errors as you do. Have you found any solutions yet? Could you post your solution if you do? Thanks!

ErinYang96 avatar Jun 30 '22 07:06 ErinYang96