T - data type for tensor() output@Operator public final class TensorListStack<T> extends PrimitiveOp implements Operand<T>
Requires that all tensors have the same shape.
input_handle: the input list tensor: the gathered result num_elements: optional. If not -1, the number of elements in the list.
| Modifier and Type | Class and Description |
|---|---|
static class |
TensorListStack.Options
Optional attributes for
TensorListStack |
operation| Modifier and Type | Method and Description |
|---|---|
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T> TensorListStack<T> |
create(Scope scope,
Operand<?> inputHandle,
Class<T> elementDtype,
TensorListStack.Options... options)
Factory method to create a class to wrap a new TensorListStack operation to the graph.
|
static TensorListStack.Options |
numElements(Long numElements) |
Output<T> |
tensor() |
equals, hashCode, toStringpublic static <T> TensorListStack<T> create(Scope scope, Operand<?> inputHandle, Class<T> elementDtype, TensorListStack.Options... options)
scope - current graph scopeinputHandle - elementDtype - options - carries optional attributes valuespublic static TensorListStack.Options numElements(Long numElements)
numElements - public Output<T> asOutput()
OperandInputs 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.
asOutput in interface Operand<T>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.