From aeafc6a56749a54ad173ed9f7f62561c7cadc941 Mon Sep 17 00:00:00 2001 From: Jay Shi Date: Mon, 2 Nov 2020 09:33:32 -0800 Subject: [PATCH] [tf.data] Increase the roll out percentage of optimization `enable_gradient_descent` to 100%. PiperOrigin-RevId: 340252424 Change-Id: Ic5a5d347c38fd94b68e10373c0b66ea3043f2e9b --- tensorflow/core/kernels/data/optimize_dataset_op.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/core/kernels/data/optimize_dataset_op.cc b/tensorflow/core/kernels/data/optimize_dataset_op.cc index b0f1f85d26c..e37d16b2486 100644 --- a/tensorflow/core/kernels/data/optimize_dataset_op.cc +++ b/tensorflow/core/kernels/data/optimize_dataset_op.cc @@ -84,7 +84,7 @@ void OptimizeDatasetOp::MakeDataset(OpKernelContext* ctx, DatasetBase* input, // of the Borg jobs, the experiments will be randomly turned on. // clang-format off absl::flat_hash_map live_experiments = { - {"enable_gradient_descent", 50}, + {"enable_gradient_descent", 100}, {"map_parallelization", 1} }; // clang-format on -- GitLab