server-json/node_modules/tfjs-image-recognition-base/build/commonjs/common/convLayer.js
2024-11-01 08:00:42 +00:00

13 lines
No EOL
527 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var tf = require("@tensorflow/tfjs-core");
function convLayer(x, params, padding, withRelu) {
if (padding === void 0) { padding = 'same'; }
if (withRelu === void 0) { withRelu = false; }
return tf.tidy(function () {
var out = tf.add(tf.conv2d(x, params.filters, [1, 1], padding), params.bias);
return withRelu ? tf.relu(out) : out;
});
}
exports.convLayer = convLayer;
//# sourceMappingURL=convLayer.js.map