np.concatenate dimension problem of 1 & 3 channel image input
np.concatenate dimension problem of 1 & 3 channel image input Question: I’m trying to train a future 7days broccoli Unet model I try to concatenate images, because my input have 8 channel(51channel 13channel[index 5]) appear this error message img_batch = np.concatenate(images, axis=3)________line172 mask_batch = np.concatenate(masks, axis=2)________line173 y_int = np.argmax(mask_batch, axis=2) y_binary = to_categorical(y_int) yield (img_batch, …