Commit 81228d5b authored by Yuxin Wu's avatar Yuxin Wu

update docs

parent 61127c2d
...@@ -41,11 +41,11 @@ for simple instructions on writing a DataFlow. ...@@ -41,11 +41,11 @@ for simple instructions on writing a DataFlow.
### Why DataFlow ### Why DataFlow
1. It's easy: write everything in pure Python, and reuse existing utilities. On the contrary, 1. It's easy: write everything in pure Python, and reuse existing utilities.
writing data loaders in TF operators is painful. On the contrary, writing data loaders in TF operators or other frameworks is usually painful.
2. It's fast (enough): see [Efficient DataFlow](http://tensorpack.readthedocs.io/en/latest/tutorial/efficient-dataflow.html) 2. It's fast: see [Efficient DataFlow](http://tensorpack.readthedocs.io/en/latest/tutorial/efficient-dataflow.html)
on how to build a fast DataFlow. on how to build a fast DataFlow with parallel prefetching.
Also see [Input Pipeline tutorial](http://tensorpack.readthedocs.io/en/latest/tutorial/input-source.html) If you're using DataFlow with tensorpack, also see [Input Pipeline tutorial](http://tensorpack.readthedocs.io/en/latest/tutorial/input-source.html)
on how tensorpack further accelerates data loading in the graph. on how tensorpack further accelerates data loading in the graph.
Nevertheless, tensorpack support data loading with native TF operators as well. Nevertheless, tensorpack support data loading with native TF operators as well.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment