predictionLayer.d.ts 276 B

123456
  1. import * as tf from '@tensorflow/tfjs-core';
  2. import { PredictionLayerParams } from './types';
  3. export declare function predictionLayer(x: tf.Tensor4D, conv11: tf.Tensor4D, params: PredictionLayerParams): {
  4. boxPredictions: tf.Tensor4D;
  5. classPredictions: tf.Tensor4D;
  6. };