public final class BoostedTreesCenterBias extends PrimitiveOp implements Operand<Boolean>
operation| Modifier and Type | Method and Description |
|---|---|
Output<Boolean> |
asOutput()
Returns the symbolic handle of a tensor.
|
Output<Boolean> |
continueCentering()
Bool, whether to continue bias centering.
|
static BoostedTreesCenterBias |
create(Scope scope,
Operand<?> treeEnsembleHandle,
Operand<Float> meanGradients,
Operand<Float> meanHessians,
Operand<Float> l1,
Operand<Float> l2)
Factory method to create a class to wrap a new BoostedTreesCenterBias operation to the graph.
|
equals, hashCode, toStringpublic static BoostedTreesCenterBias create(Scope scope, Operand<?> treeEnsembleHandle, Operand<Float> meanGradients, Operand<Float> meanHessians, Operand<Float> l1, Operand<Float> l2)
scope - current graph scopetreeEnsembleHandle - Handle to the tree ensemble.meanGradients - A tensor with shape=[logits_dimension] with mean of gradients for a first node.meanHessians - A tensor with shape=[logits_dimension] mean of hessians for a first node.l1 - l1 regularization factor on leaf weights, per instance based.l2 - l2 regularization factor on leaf weights, per instance based.public Output<Boolean> continueCentering()
public Output<Boolean> 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<Boolean>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.