public final class BoostedTreesBucketize extends PrimitiveOp implements Iterable<Operand<Integer>>
An op that returns a list of float tensors, where each tensor represents the bucketized values for a single feature.
operation| Modifier and Type | Method and Description |
|---|---|
List<Output<Integer>> |
buckets()
int; List of Rank 1 Tensors each containing the bucketized values for a single feature.
|
static BoostedTreesBucketize |
create(Scope scope,
Iterable<Operand<Float>> floatValues,
Iterable<Operand<Float>> bucketBoundaries)
Factory method to create a class to wrap a new BoostedTreesBucketize operation to the graph.
|
Iterator<Operand<Integer>> |
iterator() |
equals, hashCode, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitforEach, spliteratorpublic static BoostedTreesBucketize create(Scope scope, Iterable<Operand<Float>> floatValues, Iterable<Operand<Float>> bucketBoundaries)
scope - current graph scopefloatValues - float; List of Rank 1 Tensor each containing float values for a single feature.bucketBoundaries - float; List of Rank 1 Tensors each containing the bucket boundaries for a single
feature.public List<Output<Integer>> buckets()
Copyright © 2015–2019. All rights reserved.