UNPKG

@hoff97/tensor-js

Version:

PyTorch like deep learning inferrence library

12 lines 364 B
import { ClipNode } from './clip'; export class ReluNode extends ClipNode { constructor(attributes, inputs, outputs, constants, onnxVersion, mode) { super(attributes, inputs, outputs, constants, onnxVersion, mode); this.max = undefined; this.min = 0; } getType() { return 'Relu'; } } //# sourceMappingURL=relu.js.map