slice method

MLOperand slice(
  1. MLOperand input,
  2. Iterable<int> starts,
  3. Iterable<int> sizes, [
  4. MLSliceOptions? options,
])

Implementation

MLOperand slice(MLOperand input, Iterable<int> starts, Iterable<int> sizes,
        [MLSliceOptions? options]) =>
    js_util.callMethod(this, 'slice', [input, starts, sizes, options]);