FunctionavgPool3dGrad_* Computes the backprop of a 3d avg pool. * * @param dy The dy error, of rank 5 of shape * [batchSize, depth, height, width, channels]. * assu
tfjs-core/src/ops/avg_pool_3d_grad.ts:52
FunctionavgPool3d_* Computes the 3D average pooling. * * ```js * const x = tf.tensor5d([1, 2, 3, 4, 5, 6, 7, 8], [1, 2, 2, 2, 1]); * const result = tf.avgPool3d(x,
tfjs-core/src/ops/avg_pool_3d.ts:68
FunctionbooleanMaskAsync_* Apply boolean mask to tensor. * * ```js * const tensor = tf.tensor2d([1, 2, 3, 4, 5, 6], [3, 2]); * const mask = tf.tensor1d([1, 0, 1], 'bool');
tfjs-core/src/ops/boolean_mask.ts:46