aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/how_tos/reading_data/index.md
diff options
context:
space:
mode:
authorGravatar Vijay Vasudevan <vrv@google.com>2016-01-24 23:05:22 -0800
committerGravatar Vijay Vasudevan <vrv@google.com>2016-01-24 23:06:20 -0800
commit9b70316263eb74476ab96b7c0f300c4d90223425 (patch)
treed10e30463edbc10e5225b80a90579abb00da87cf /tensorflow/g3doc/how_tos/reading_data/index.md
parent87af568b0b3e920d91cdb2114fd3f40d8b9504a9 (diff)
Running our linter on a lot of files.
Change: 112920860
Diffstat (limited to 'tensorflow/g3doc/how_tos/reading_data/index.md')
-rw-r--r--tensorflow/g3doc/how_tos/reading_data/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/g3doc/how_tos/reading_data/index.md b/tensorflow/g3doc/how_tos/reading_data/index.md
index f991f2b2ea..554cb854db 100644
--- a/tensorflow/g3doc/how_tos/reading_data/index.md
+++ b/tensorflow/g3doc/how_tos/reading_data/index.md
@@ -99,7 +99,7 @@ key, value = reader.read(filename_queue)
record_defaults = [[1], [1], [1], [1], [1]]
col1, col2, col3, col4, col5 = tf.decode_csv(
value, record_defaults=record_defaults)
-features = tf.concat(0, [col1, col2, col3, col4])
+features = tf.pack([col1, col2, col3, col4])
with tf.Session() as sess:
# Start populating the filename queue.