boxPredictionLayer.d.ts 274 B

123456
  1. import * as tf from '@tensorflow/tfjs-core';
  2. import { BoxPredictionParams } from './types';
  3. export declare function boxPredictionLayer(x: tf.Tensor4D, params: BoxPredictionParams): {
  4. boxPredictionEncoding: tf.Tensor<tf.Rank>;
  5. classPrediction: tf.Tensor<tf.Rank>;
  6. };