UNPKG

@vladmandic/face-api

Version:

FaceAPI: AI-powered Face Detection & Rotation Tracking, Face Description & Recognition, Age & Gender & Emotion Prediction for Browser and NodeJS using TensorFlow/JS

7 lines (6 loc) 393 B
import { ParamMapping } from '../common/index'; import { DenseBlock3Params, DenseBlock4Params } from './types'; export declare function loadParamsFactory(weightMap: any, paramMappings: ParamMapping[]): { extractDenseBlock3Params: (prefix: string, isFirstLayer?: boolean) => DenseBlock3Params; extractDenseBlock4Params: (prefix: string, isFirstLayer?: boolean) => DenseBlock4Params; };