face-api.js
Version:
JavaScript API for face detection and face recognition in the browser with tensorflow.js
17 lines • 703 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tf = require("@tensorflow/tfjs-core");
var common_1 = require("../common");
var sharedLayers_1 = require("./sharedLayers");
function PNet(x, params) {
return tf.tidy(function () {
var out = sharedLayers_1.sharedLayer(x, params, true);
var conv = common_1.convLayer(out, params.conv4_1, 'valid');
var max = tf.expandDims(tf.max(conv, 3), 3);
var prob = tf.softmax(tf.sub(conv, max), 3);
var regions = common_1.convLayer(out, params.conv4_2, 'valid');
return { prob: prob, regions: regions };
});
}
exports.PNet = PNet;
//# sourceMappingURL=PNet.js.map
;