residualLayer.d.ts 280 B

1234
  1. import * as tf from '@tensorflow/tfjs-core';
  2. import { ResidualLayerParams } from './types';
  3. export declare function residual(x: tf.Tensor4D, params: ResidualLayerParams): tf.Tensor4D;
  4. export declare function residualDown(x: tf.Tensor4D, params: ResidualLayerParams): tf.Tensor4D;