face-api/build/ops/index.js

13 lines
350 B
JavaScript
Raw Normal View History

2020-08-31 15:12:04 +02:00
export * from './iou';
export * from './minBbox';
export * from './nonMaxSuppression';
export * from './normalize';
export * from './padToSquare';
export * from './shuffleArray';
export function sigmoid(x) {
return 1 / (1 + Math.exp(-x));
}
export function inverseSigmoid(x) {
return Math.log(x / (1 - x));
}
//# sourceMappingURL=index.js.map