From 87dfdc5180845adc44fe508629f0c25c0b2895f1 Mon Sep 17 00:00:00 2001 From: Sanders Kleinfeld Date: Thu, 23 Feb 2017 15:54:29 -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 6e3888ea37a..51202a9c5a5 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