@Operator public final class FakeQuantWithMinMaxArgs extends PrimitiveOp implements Operand<Float>
Attributes `[min; max]` define the clamping range for the `inputs` data. `inputs` values are quantized into the quantization range (`[0; 2^num_bits - 1]` when `narrow_range` is false and `[1; 2^num_bits - 1]` when it is true) and then de-quantized and output as floats in `[min; max]` interval. `num_bits` is the bitwidth of the quantization; between 2 and 16, inclusive.
Quantization is called fake since the output is still in floating point.
| Modifier and Type | Class and Description |
|---|---|
static class |
FakeQuantWithMinMaxArgs.Options
Optional attributes for
FakeQuantWithMinMaxArgs |
operation| Modifier and Type | Method and Description |
|---|---|
Output<Float> |
asOutput()
Returns the symbolic handle of a tensor.
|
static FakeQuantWithMinMaxArgs |
create(Scope scope,
Operand<Float> inputs,
FakeQuantWithMinMaxArgs.Options... options)
Factory method to create a class to wrap a new FakeQuantWithMinMaxArgs operation to the graph.
|
static FakeQuantWithMinMaxArgs.Options |
max(Float max) |
static FakeQuantWithMinMaxArgs.Options |
min(Float min) |
static FakeQuantWithMinMaxArgs.Options |
narrowRange(Boolean narrowRange) |
static FakeQuantWithMinMaxArgs.Options |
numBits(Long numBits) |
Output<Float> |
outputs() |
equals, hashCode, toStringpublic static FakeQuantWithMinMaxArgs create(Scope scope, Operand<Float> inputs, FakeQuantWithMinMaxArgs.Options... options)
scope - current graph scopeinputs - options - carries optional attributes valuespublic static FakeQuantWithMinMaxArgs.Options min(Float min)
min - public static FakeQuantWithMinMaxArgs.Options max(Float max)
max - public static FakeQuantWithMinMaxArgs.Options numBits(Long numBits)
numBits - public static FakeQuantWithMinMaxArgs.Options narrowRange(Boolean narrowRange)
narrowRange - 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.