TensorListScatterIntoExistingList

public final class TensorListScatterIntoExistingList

Scatters tensor at indices in an input list.

Each member of the TensorList corresponds to one row of the input tensor, specified by the given index (see tf.gather).

input_handle: The list to scatter into. tensor: The input tensor. indices: The indices used to index into the list. output_handle: The TensorList.

Public Methods

Output<Object>
asOutput()
Returns the symbolic handle of a tensor.
static <T> TensorListScatterIntoExistingList
create(Scope scope, Operand<?> inputHandle, Operand<T> tensor, Operand<Integer> indices)
Factory method to create a class wrapping a new TensorListScatterIntoExistingList operation.
Output<?>

Inherited Methods

Public Methods

public Output<Object> asOutput ()

Returns the symbolic handle of a tensor.

Inputs to TensorFlow operations are outputs of another TensorFlow operation. This method is used to obtain a symbolic handle that represents the computation of the input.

public static TensorListScatterIntoExistingList create (Scope scope, Operand<?> inputHandle, Operand<T> tensor, Operand<Integer> indices)

Factory method to create a class wrapping a new TensorListScatterIntoExistingList operation.

Parameters
scope current scope
Returns
  • a new instance of TensorListScatterIntoExistingList

public Output<?> outputHandle ()