aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/estimator/estimator_test.py
diff options
context:
space:
mode:
authorGravatar Jianwei Xie <xiejw@google.com>2018-08-15 09:46:20 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-15 09:50:21 -0700
commitfabf7a5c18555e52cef75643b4d4532ff70aa23e (patch)
treea558bfb1f9183bcd8bfe6adc4d159f21d8723d2a /tensorflow/python/estimator/estimator_test.py
parentbf23e5f0f6e75a35521b7765da9863dbc24d8a71 (diff)
Remove unused Estimator overrides.
PiperOrigin-RevId: 208834294
Diffstat (limited to 'tensorflow/python/estimator/estimator_test.py')
-rw-r--r--tensorflow/python/estimator/estimator_test.py11
1 files changed, 1 insertions, 10 deletions
diff --git a/tensorflow/python/estimator/estimator_test.py b/tensorflow/python/estimator/estimator_test.py
index e3f22d9010..98ea64cc91 100644
--- a/tensorflow/python/estimator/estimator_test.py
+++ b/tensorflow/python/estimator/estimator_test.py
@@ -158,16 +158,7 @@ class EstimatorInheritanceConstraintTest(test.TestCase):
def __init__(self):
super(_Estimator, self).__init__(model_fn=dummy_model_fn)
- def _call_input_fn(self, input_fn, mode):
- return input_fn()
-
- def _create_global_step(self, graph):
- pass
-
- def _convert_train_steps_to_hooks(self, steps, max_steps):
- pass
-
- def _convert_eval_steps_to_hooks(self, steps):
+ def _tf_api_names(self):
pass
_Estimator()