From ae82a6cb5822d92258e9ce8c1dd36a60eba33cd5 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Thu, 4 Jun 2020 11:40:13 -0700 Subject: [PATCH] Fix a key word typo in `shuffle_dataset_op`. PiperOrigin-RevId: 314771349 Change-Id: Iae93f7fdb7cb2ec0f51ba95f4fde354db4d5dfe8 --- tensorflow/core/kernels/data/shuffle_dataset_op.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/core/kernels/data/shuffle_dataset_op.cc b/tensorflow/core/kernels/data/shuffle_dataset_op.cc index 3e549246a95..7ac27ead6c2 100644 --- a/tensorflow/core/kernels/data/shuffle_dataset_op.cc +++ b/tensorflow/core/kernels/data/shuffle_dataset_op.cc @@ -72,7 +72,7 @@ constexpr char kEpochNumRandomSamples[] = "epoch_num_random_samples"; constexpr char kShuffleDatasetV1[] = "ShuffleDataset"; constexpr char kShuffleDatasetV2[] = "ShuffleDatasetV2"; constexpr char kShuffleDatasetV3[] = "ShuffleDatasetV3"; -constexpr char kShuffleAndRepeatDatasetV1[] = "ShuffleAndRepeatDatasetV1"; +constexpr char kShuffleAndRepeatDatasetV1[] = "ShuffleAndRepeatDataset"; constexpr char kShuffleAndRepeatDatasetV2[] = "ShuffleAndRepeatDatasetV2"; ShuffleDatasetOpBase::ShuffleDatasetOpBase(OpKernelConstruction* ctx)