for i, b in enumerate(batch(train, batch_size)):
start_batch = time.time()
imgs = np.array([i[0] for i in b]).astype(np.float32)
true_masks = np.array([i[1] for i in b]).astype(np.float32) / 255.
您好!将CASIA2数据集按照论文里的表述修改后,出现了ValueError: could not broadcast input array from shape (256,256,4) into shape (256,256)这个错误,请问这是什么问题,恳请指教,谢谢!
您好!将CASIA2数据集按照论文里的表述修改后,出现了ValueError: could not broadcast input array from shape (256,256,4) into shape (256,256)这个错误,请问这是什么问题,恳请指教,谢谢!