depthwiseSeparableConv.d.ts 224 B

123
  1. import * as tf from '@tensorflow/tfjs-core';
  2. import { SeparableConvParams } from './types';
  3. export declare function depthwiseSeparableConv(x: tf.Tensor4D, params: SeparableConvParams, stride: [number, number]): tf.Tensor4D;