UNPKG

tfjs-tiny-yolov2

Version:

Tiny YOLO v2 object detection with tensorflow.js.

33 lines (24 loc) 791 B
import * as tf from '@tensorflow/tfjs-core'; import { ExtractWeightsFunction, ParamMapping } from 'tfjs-image-recognition-base'; import { FCParams } from './types'; export function extractFCParamsFactory( extractWeights: ExtractWeightsFunction, paramMappings: ParamMapping[] ) { return function( channelsIn: number, channelsOut: number, mappedPrefix: string ): FCParams { const fc_weights = tf.tensor2d(extractWeights(channelsIn * channelsOut), [channelsIn, channelsOut]) const fc_bias = tf.tensor1d(extractWeights(channelsOut)) paramMappings.push( { paramPath: `${mappedPrefix}/weights` }, { paramPath: `${mappedPrefix}/bias` } ) return { weights: fc_weights, bias: fc_bias } } }