operation| Modifier and Type | Method and Description |
|---|---|
Output<Float> |
asOutput()
Returns the symbolic handle of a tensor.
|
static TensorForestTreePredict |
create(Scope scope,
Operand<?> treeHandle,
Operand<Float> denseFeatures,
Long logitsDimension)
Factory method to create a class to wrap a new TensorForestTreePredict operation to the graph.
|
Output<Float> |
logits()
The logits predictions from the tree for each instance in the batch.
|
equals, hashCode, toStringpublic static TensorForestTreePredict create(Scope scope, Operand<?> treeHandle, Operand<Float> denseFeatures, Long logitsDimension)
scope - current graph scopetreeHandle - Handle to the tree resource.denseFeatures - Rank 2 dense features tensor.logitsDimension - Scalar, dimension of the logits.public Output<Float> logits()
public Output<Float> 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<Float>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.