unsqueeze
Unsqueezing.
This layer unsqueezes an input by inserting 1D axes.
For example, the input shape is [14, 14, 256] and axes is [0, 2, 3], then the output shape becomes [1, 14, 1, 1, 14, 256].
Parameters
- axes : axis indices where the 1 is inserted in output blob shape.