UNPKG

face-api.js

Version:

JavaScript API for face detection and face recognition in the browser with tensorflow.js

13 lines (12 loc) 394 B
import { Point } from '../classes/Point'; export declare type TinyYolov2Config = { withSeparableConvs: boolean; iouThreshold: number; anchors: Point[]; classes: string[]; meanRgb?: [number, number, number]; withClassScores?: boolean; filterSizes?: number[]; isFirstLayerConv2d?: boolean; }; export declare function validateConfig(config: any): void;