UNPKG

layerganza

Version:

A feed-forward neural network with injectable layers, activation functions, and optimizers.

12 lines (11 loc) 199 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Linear { xToY(x) { return x; } yToSlope() { return 1; } } exports.default = Linear;