keras-js
Version:
Run Keras models in the browser, with GPU support using WebGL
27 lines (21 loc) • 522 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = hard_sigmoid;
var _cwise = _interopRequireDefault(require("cwise"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
const _hard_sigmoid = (0, _cwise.default)({
args: ['array'],
body: function (_x) {
_x = _x * 0.2 + 0.5;
if (_x <= 0) {
_x = 0;
} else if (_x >= 1) {
_x = 1;
}
}
});
function hard_sigmoid(x) {
_hard_sigmoid(x.tensor);
}
;