Adding missing close parenthesis in code listing.

This commit is contained in:
Sanders Kleinfeld 2017-02-23 15:54:29 -05:00
parent 45ab528211
commit 87dfdc5180

View File

@ -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