| Modifier and Type | Class and Description |
|---|---|
static class |
StringJoin.Options
Optional attributes for
StringJoin |
operation| Modifier and Type | Method and Description |
|---|---|
Output<String> |
asOutput()
Returns the symbolic handle of a tensor.
|
static StringJoin |
create(Scope scope,
Iterable<Operand<String>> inputs,
StringJoin.Options... options)
Factory method to create a class to wrap a new StringJoin operation to the graph.
|
Output<String> |
output() |
static StringJoin.Options |
separator(String separator) |
equals, hashCode, toStringpublic static StringJoin create(Scope scope, Iterable<Operand<String>> inputs, StringJoin.Options... options)
scope - current graph scopeinputs - A list of string tensors. The tensors must all have the same shape,
or be scalars. Scalars may be mixed in; these will be broadcast to the shape
of non-scalar inputs.options - carries optional attributes valuespublic static StringJoin.Options separator(String separator)
separator - string, an optional join separator.public Output<String> 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<String>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.