reshape function

VARP reshape(
  1. VARP a,
  2. List<int> newShape, {
  3. DimensionFormat format = DimensionFormat.NCHW,
})

Implementation

VARP reshape(VARP a, List<int> newShape, {DimensionFormat format = DimensionFormat.NCHW}) =>
    F.reshape(a, newShape, format: format);