aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/crf
diff options
context:
space:
mode:
authorGravatar Martin Wicke <wicke@google.com>2017-01-29 17:50:23 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-29 18:08:20 -0800
commitcb45a7d952ee126efe43ef1b2c08fb3503e2f6bd (patch)
tree1501df0fa66f1419d0cf778be9d2cf5eb95773db /tensorflow/contrib/crf
parent4148fd588de61020d81cf2018c2c7c334e05b568 (diff)
Seal contrib interfaces (as much a feasible). If you were using a symbol which is now hidden, it should be added to the _allowed_symbols list in the appropriate __init__.py file.
Change: 145943844
Diffstat (limited to 'tensorflow/contrib/crf')
-rw-r--r--tensorflow/contrib/crf/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tensorflow/contrib/crf/__init__.py b/tensorflow/contrib/crf/__init__.py
index 195e8cd717..7f7818c845 100644
--- a/tensorflow/contrib/crf/__init__.py
+++ b/tensorflow/contrib/crf/__init__.py
@@ -37,3 +37,7 @@ from tensorflow.contrib.crf.python.ops.crf import crf_sequence_score
from tensorflow.contrib.crf.python.ops.crf import crf_unary_score
from tensorflow.contrib.crf.python.ops.crf import CrfForwardRnnCell
from tensorflow.contrib.crf.python.ops.crf import viterbi_decode
+
+from tensorflow.python.util.all_util import remove_undocumented
+
+remove_undocumented(__name__)