UNPKG

face-api.js

Version:

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

9 lines 314 B
import { TinyFaceDetector } from './TinyFaceDetector'; export * from './TinyFaceDetector'; export * from './TinyFaceDetectorOptions'; export function createTinyFaceDetector(weights) { var net = new TinyFaceDetector(); net.extractWeights(weights); return net; } //# sourceMappingURL=index.js.map