Mask_RCNN
Mask_RCNN copied to clipboard
TypeError: 'NoneType' object is not iterable
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 I have exactly the same errors as you do. Have you found any solutions yet? Could you post your solution if you do? Thanks!