mobileNetV1.d.ts 209 B

123456
  1. import * as tf from '@tensorflow/tfjs-core';
  2. import { MobileNetV1 } from './types';
  3. export declare function mobileNetV1(x: tf.Tensor4D, params: MobileNetV1.Params): {
  4. out: tf.Tensor4D;
  5. conv11: any;
  6. };