gru method
Iterable<MLOperand>
gru(
- MLOperand input,
- MLOperand weight,
- MLOperand recurrentWeight,
- int steps,
- MLGruOptions? options,
Implementation
Iterable<MLOperand> gru(MLOperand input, MLOperand weight,
MLOperand recurrentWeight, int steps, int hiddenSize,
[MLGruOptions? options]) =>
js_util.callMethod(this, 'gru',
[input, weight, recurrentWeight, steps, hiddenSize, options]);