I'm wondering how to achieve UpSampling2D in CNTK. I cannot find such layer in the API.
UpSampling2D is an opposite operation of pooling layers, and expand the data by repeating the rows and columns of the data. Here's keras/tensorflow API for UpSampling2D.
By looking at the tensorflow code, they use backend.resize_images
operation, but I cannot find resize operation in CNTK API either.
Answer 1 (From Frank)
Answer 2 (From David)
Picture from Quora: How do fully convolutional networks upsample their coarse output?