Skip to content

Commit

Permalink
Removed misplaced quote char (#15657)
Browse files Browse the repository at this point in the history
  • Loading branch information
zenofsahil authored and drpngx committed Dec 27, 2017
1 parent faed2b9 commit edbcf17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/python/data/ops/dataset_ops.py
Expand Up @@ -803,7 +803,7 @@ def interleave(self, map_func, cycle_length, block_length=1):
```python
# Preprocess 4 files concurrently, and interleave blocks of 16 records from
# each file.
filenames = ["/var/data/file1.txt", "/var/data/file2.txt", ..."]
filenames = ["/var/data/file1.txt", "/var/data/file2.txt", ...]
dataset = (Dataset.from_tensor_slices(filenames)
.interleave(lambda x:
TextLineDataset(x).map(parse_fn, num_parallel_calls=1),
Expand Down

0 comments on commit edbcf17

Please sign in to comment.