gru method

Iterable<MLOperand> gru(
  1. MLOperand input,
  2. MLOperand weight,
  3. MLOperand recurrentWeight,
  4. int steps,
  5. int hiddenSize, [
  6. 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]);