T - data type for output() output@Operator public final class LRN<T extends Number> extends PrimitiveOp implements Operand<T>
The 4-D `input` tensor is treated as a 3-D array of 1-D vectors (along the last dimension), and each vector is normalized independently. Within a given vector, each component is divided by the weighted, squared sum of inputs within `depth_radius`. In detail,
sqr_sum[a, b, c, d] = sum(input[a, b, c, d - depth_radius : d + depth_radius + 1] ** 2) output = input / (bias + alpha * sqr_sum) ** beta
For details, see [Krizhevsky et al., ImageNet classification with deep convolutional neural networks (NIPS 2012)](http://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks).
| Modifier and Type | Class and Description |
|---|---|
static class |
LRN.Options
Optional attributes for
LRN |
operation| Modifier and Type | Method and Description |
|---|---|
static LRN.Options |
alpha(Float alpha) |
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static LRN.Options |
beta(Float beta) |
static LRN.Options |
bias(Float bias) |
static <T extends Number> |
create(Scope scope,
Operand<T> input,
LRN.Options... options)
Factory method to create a class to wrap a new LRN operation to the graph.
|
static LRN.Options |
depthRadius(Long depthRadius) |
Output<T> |
output() |
equals, hashCode, toStringpublic static <T extends Number> LRN<T> create(Scope scope, Operand<T> input, LRN.Options... options)
scope - current graph scopeinput - 4-D.options - carries optional attributes valuespublic static LRN.Options depthRadius(Long depthRadius)
depthRadius - 0-D. Half-width of the 1-D normalization window.public static LRN.Options bias(Float bias)
bias - An offset (usually positive to avoid dividing by 0).public static LRN.Options alpha(Float alpha)
alpha - A scale factor, usually positive.public static LRN.Options beta(Float beta)
beta - An exponent.public Output<T> 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<T extends Number>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.