UNPKG

recurrent-js-gpu

Version:

GPU-accelerated Deep Recurrent Neural Networks and LSTMs in Typescript. Ported, object-oriented and refactored version of Andrej Karpathy's recurrent-js (https://github.com/karpathy/recurrentjs)

11 lines 319 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const Graph_1 = require("./Graph"); class NNModel { constructor(needsBackProp = true) { this.model = {}; this.graph = new Graph_1.Graph(needsBackProp); } } exports.NNModel = NNModel; //# sourceMappingURL=NNModel.js.map