aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-11-02 12:46:10 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-11-02 12:51:04 -0700
commit3ded5b3c875634fb7ebfee986bba69ab4299214c (patch)
treecb4c0d6ca39d6f9c4fb53e997259a3ae7ef871c9
parent99d51b8da87ba462f66a6be90212677f2cae9e32 (diff)
Update the Network-in-variable-scope exception text to point to the
existing feature request #14164, instead of inviting the user to create a new one. PiperOrigin-RevId: 174366253
-rw-r--r--tensorflow/contrib/eager/python/network.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tensorflow/contrib/eager/python/network.py b/tensorflow/contrib/eager/python/network.py
index 5b53a597f2..97feaec30e 100644
--- a/tensorflow/contrib/eager/python/network.py
+++ b/tensorflow/contrib/eager/python/network.py
@@ -321,7 +321,9 @@ class Network(base.Layer):
raise ValueError(
("The parent of a Layer added to Network %s was garbage collected "
"before the Layer was built. If this limitation bothers you "
- "please, file a feature request.") % (self.name,))
+ "please, comment on "
+ "https://github.com/tensorflow/tensorflow/issues/14164.") %
+ (self.name,))
with variable_scope.variable_scope(parent_scope):
# Horrid hack to make Layer variable names which are direct
# sub-layers of Networks conform to the Network variable naming