UNPKG

@tensorflow-models/coco-ssd

Version:

Object detection model (coco-ssd) in TensorFlow.js

6 lines (5 loc) 338 B
import * as tfc from '@tensorflow/tfjs-core'; import { NamedTensorsMap } from '../data/types'; import { ExecutionContext } from '../executor/execution_context'; import { Node } from './types'; export declare function executeOp(node: Node, tensorMap: NamedTensorsMap, context: ExecutionContext): tfc.Tensor[] | Promise<tfc.Tensor[]>;