How to add RGB channel in MRI image for using efficient3d as it needs 3 channel input.
My dimensions of MRI are (182,218,182 ).
I have to convert my training dataset from (182,218,182) to (182,218,182,3).
Need your help guys.
You can try tf.keras.layers.concatenate
thank you, it is working now.
You can try tf.keras.layers.concatenate
Dear friend is it possible to input (182,218,,182,1 ) in this efficient3D. As 3 channels are working but due to too many parameters, google colab is getting crashed.
Just use input_shape = (182, 218, 182, 1) parameter in EfficientNet definition.
The question was answered, so I suggest to close this issue.