Hello,
I just made two submissions and both submission failed.
In the first submission, the error is "RMSE += np.linalg.norm(gt_tmp - pred_tmp) ValueError: operands could not be broadcast together with shapes (768000,) (256000,) ". It seems that the groundtruth images have 3 channels. So I made all the output images with 3 channels as well.
However, in the second submission, the error is "RMSE += np.linalg.norm(gt_tmp - pred_tmp)
ValueError: operands could not be broadcast together with shapes (256000,) (768000,) ". Now it seems that some groundtruth images have 3 channels while some only have 1 channel.
Can anyone have a look at it? Thanks a lot!