aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/__init__.py
diff options
context:
space:
mode:
authorGravatar Jonathan Hseu <jhseu@google.com>2017-03-16 11:57:40 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-03-16 13:18:11 -0700
commit424662da7d9d81e6f4af634424b4b4a8d788e4e8 (patch)
tree59a6d22188e3ee5178df506778188f9726bce749 /tensorflow/python/__init__.py
parente97d8947d3055ccec01d6eff58a376da98c7a779 (diff)
Fix estimator tests when running against the installed pip package.
This change allows the importing from tensorflow.python.estimator.* for usage in tests. Change: 150356830
Diffstat (limited to 'tensorflow/python/__init__.py')
-rw-r--r--tensorflow/python/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/__init__.py b/tensorflow/python/__init__.py
index 16a1b5d64d..e632091094 100644
--- a/tensorflow/python/__init__.py
+++ b/tensorflow/python/__init__.py
@@ -74,7 +74,7 @@ from tensorflow.python.ops.standard_ops import *
# pylint: enable=wildcard-import
# Bring in subpackages.
-from tensorflow.python import estimator
+from tensorflow.python.estimator import estimator_lib as estimator
from tensorflow.python.layers import layers
from tensorflow.python.ops import image_ops as image
from tensorflow.python.ops import metrics