brain.js
Version:
Neural networks in JavaScript
9 lines • 472 B
TypeScript
import { Matrix } from './matrix';
import { Equation } from './matrix/equation';
import { RNNTimeStep } from './rnn-time-step';
import { IRNNHiddenLayer } from './rnn';
export declare class GRUTimeStep extends RNNTimeStep {
getHiddenLayer(hiddenSize: number, prevSize: number): IRNNHiddenLayer;
getEquation(equation: Equation, inputMatrix: Matrix, previousResult: Matrix, hiddenLayer: IRNNHiddenLayer): Matrix;
}
//# sourceMappingURL=gru-time-step.d.ts.map