aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/receptive_field
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-06-04 08:12:37 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-04 08:15:29 -0700
commit1b4336cd5ab851404d18976169d396247ec40f10 (patch)
treed65ebc704688464b21ba40144d627f093718a2eb /tensorflow/contrib/receptive_field
parent01c4773f435c556712c5465792f2936b5c762a1e (diff)
Add LRN as unchanged rf layer operations for the receptive field calculator.
PiperOrigin-RevId: 199134753
Diffstat (limited to 'tensorflow/contrib/receptive_field')
-rw-r--r--tensorflow/contrib/receptive_field/python/util/parse_layer_parameters.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/receptive_field/python/util/parse_layer_parameters.py b/tensorflow/contrib/receptive_field/python/util/parse_layer_parameters.py
index bc383a8034..0e3c46f17d 100644
--- a/tensorflow/contrib/receptive_field/python/util/parse_layer_parameters.py
+++ b/tensorflow/contrib/receptive_field/python/util/parse_layer_parameters.py
@@ -27,7 +27,7 @@ from tensorflow.python.platform import tf_logging as logging
_UNCHANGED_RF_LAYER_OPS = [
"Add", "BiasAdd", "Cast", "Ceil", "ConcatV2", "Const", "Floor",
"FusedBatchNorm", "Identity", "Log", "Mul", "Pow", "RealDiv", "Relu",
- "Relu6", "Round", "Rsqrt", "Softplus", "Sub", "VariableV2"
+ "Relu6", "Round", "Rsqrt", "Softplus", "Sub", "VariableV2", "LRN"
]
# Different ways in which padding modes may be spelled.