UNPKG

@hoff97/tensor-js

Version:

PyTorch like deep learning inferrence library

7 lines 186 B
import { PoolOperation } from './pool'; export class ProductOperation extends PoolOperation { update(a, b) { return `${a} * ${b}`; } } //# sourceMappingURL=product.js.map