File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 713
713
" Here is a summary of the best practices for designing performant TensorFlow\n " ,
714
714
" input pipelines:\n " ,
715
715
" \n " ,
716
- " * [\ U se the `prefetch` transformation\ ] (#prefetching) to overlap the work of a producer and consumer\n " ,
717
- " * [\ P arallelize the data reading transformation\ ] (#parallelizing_data_extraction) using the `interleave` transformation\n " ,
718
- " * [\ P arallelize the `map` transformation\ ] (#parallelizing_data_transformation) by setting the `num_parallel_calls` argument\n " ,
719
- " * [\ U se the `cache` transformation\ ] (#caching) to cache data in memory during the first epoch\n " ,
720
- " * [\ V ectorize user-defined functions\ ] (#vectorizing_mapping) passed in to the `map` transformation\n " ,
721
- " * [\ R educe memory usage\ ] (#reducing_memory_footprint) when applying the `interleave`, `prefetch`, and `shuffle` transformations"
716
+ " * [Use the `prefetch` transformation](#prefetching) to overlap the work of a producer and consumer\n " ,
717
+ " * [Parallelize the data reading transformation](#parallelizing_data_extraction) using the `interleave` transformation\n " ,
718
+ " * [Parallelize the `map` transformation](#parallelizing_data_transformation) by setting the `num_parallel_calls` argument\n " ,
719
+ " * [Use the `cache` transformation](#caching) to cache data in memory during the first epoch\n " ,
720
+ " * [Vectorize user-defined functions](#vectorizing_mapping) passed in to the `map` transformation\n " ,
721
+ " * [Reduce memory usage](#reducing_memory_footprint) when applying the `interleave`, `prefetch`, and `shuffle` transformations"
722
722
]
723
723
},
724
724
{
You can’t perform that action at this time.
0 commit comments