From 3f8eca8f7d6c6f3cb13c34dddb33987f64e74858 Mon Sep 17 00:00:00 2001 From: Sanders Kleinfeld Date: Thu, 23 Feb 2017 15:46:48 -0500 Subject: [PATCH] Adding missing close parenthesis in code listing. --- tensorflow/g3doc/tutorials/input_fn/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/g3doc/tutorials/input_fn/index.md b/tensorflow/g3doc/tutorials/input_fn/index.md index bec006f0755..fd31a8995d2 100644 --- a/tensorflow/g3doc/tutorials/input_fn/index.md +++ b/tensorflow/g3doc/tutorials/input_fn/index.md @@ -286,7 +286,7 @@ accept a _pandas_ `Dataframe` and return feature column and label values as ```python def input_fn(data_set): - feature_cols = {k: tf.constant(data_set[k].values + feature_cols = {k: tf.constant(data_set[k].values) for k in FEATURES} labels = tf.constant(data_set[LABEL].values) return feature_cols, labels