• Gets the shape of the reshaped and permuted input Tensor before any cropping is applied. The new shape will be:

    [batch / prod(blockShape),inputShape[1] * blockShape[0], ..., inputShape[M] * blockShape[M-1],inputShape[M+1], ..., inputShape[N-1]]

    See step 3: https://www.tensorflow.org/api_docs/python/tf/batch_to_space_nd

    Parameters

    • inputShape: number[]
    • blockShape: number[]
    • prod: number
    • Optional batchToSpace: boolean

    Returns number[]

Generated using TypeDoc