aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/tpu/python
diff options
context:
space:
mode:
authorGravatar Jianwei Xie <xiejw@google.com>2018-09-07 15:55:10 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-07 15:59:07 -0700
commit0b3786c1da9ea9532c48a11974886007794202f2 (patch)
tree846563299fd5991eb496475eb997bcde06d7eec4 /tensorflow/contrib/tpu/python
parent8f82f7cd650efbed650ac5756e8e1260283b2371 (diff)
Fixed the bug that the pipeline version fit does not return history.
PiperOrigin-RevId: 212050240
Diffstat (limited to 'tensorflow/contrib/tpu/python')
-rw-r--r--tensorflow/contrib/tpu/python/tpu/keras_support.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/contrib/tpu/python/tpu/keras_support.py b/tensorflow/contrib/tpu/python/tpu/keras_support.py
index 900a3de519..d8c3872363 100644
--- a/tensorflow/contrib/tpu/python/tpu/keras_support.py
+++ b/tensorflow/contrib/tpu/python/tpu/keras_support.py
@@ -1422,7 +1422,7 @@ class KerasTPUModel(models.Model):
y,
sample_weights,
batch_size)
- self._pipeline_fit_loop(
+ return self._pipeline_fit_loop(
x,
y,
sample_weights=sample_weights,