I don’t understand the concept of :
“chain the first output element of each block to the input of the next convolutional block”
Why it should be
cblock2 = conv_block(cblock1[0], n_filters * 2)
Instead of
cblock2 = conv_block(cblock1, n_filters * 2)