Hi Team,
I have passed conv_block and upsampling_block tests.
To build the model, referring to inline instructions, I have added Contracting and Expanding path.
for contracting path by chaining the first element of the output of each block to be the input of the next conv_block,
like-conv_block(inputs = cblock1[0], n_filters =n_filters*2)
for expanding path, passing upasampling_block and chaining the output of the previous block as expansive_input and the corresponding contractive block output,
like- ublock7 = upsampling_block(ublock6, cblock3[1], n_filters * 4)
Am not sure what is the mistake or error that am doing here. Kindly please help me understand. Thanks