I'm new in Tensorflow. After convolution the shape of my layer is shape=(5, 5, 5, 5), dtype=float32
but when I'm applying deconvolution, getting shape like shape=(?, 25, 25, 640)
, dtype=float32.
That means batch size is not showing properly (? sign) after deconvolution. For deconvolution, I used this Deconvolution function.
Error ValueError: Shape of a new variable (local1/weights) must be fully defined, but instead was (?, 1000).
I already tried example1but didn't work well