gruCell method

MLOperand gruCell(
  1. MLOperand input,
  2. MLOperand weight,
  3. MLOperand recurrentWeight,
  4. MLOperand hiddenState,
  5. int hiddenSize, [
  6. MLGruCellOptions? options,
])

Implementation

MLOperand gruCell(MLOperand input, MLOperand weight,
        MLOperand recurrentWeight, MLOperand hiddenState, int hiddenSize,
        [MLGruCellOptions? options]) =>
    js_util.callMethod(this, 'gruCell',
        [input, weight, recurrentWeight, hiddenState, hiddenSize, options]);