tfjs-tiny-yolov2
Version:
Tiny YOLO v2 object detection with tensorflow.js.
4 lines (3 loc) • 345 B
TypeScript
import { ExtractWeightsFunction, ParamMapping } from 'tfjs-image-recognition-base';
import { ConvParams } from './types';
export declare function extractConvParamsFactory(extractWeights: ExtractWeightsFunction, paramMappings: ParamMapping[]): (channelsIn: number, channelsOut: number, filterSize: number, mappedPrefix: string) => ConvParams;