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)

7 lines (6 loc) 116 B
import { Mat } from '../Mat'; export interface PreviousOutput { c: Array<Mat>; h: Array<Mat>; o: Mat; }