未验证 提交 ed655ca1 编写于 作者: Z Zhen Wang 提交者: GitHub

Fix the doc format of io.chain. (#1479)

* fix the doc format of io.chain.
上级 e92b8d19
......@@ -7,10 +7,10 @@ chain
创建一个数据读取器,其功能是将输入的多个数据读取器的输出链接在一起作为它的输出。
举例来说,如果输入数据读取器的输出分别为[0,0,0]、[10,10,10]和[20,20,20],那么调用该接口产生的新数据读取器的输出为:[0,0,0][10,10,10][20,20,20] 。
举例来说,如果有3个输入读取器且输出分别为[0,0,0]、[10,10,10]和[20,20,20],那么调用该接口产生的新数据读取器的输出为:[[0,0,0], [10,10,10], [20,20,20]] 。
参数:
- **readers** – 输入的数据读取器。
- **readers(list)** – 输入的数据读取器。
返回: 新的数据读取器。
......@@ -21,6 +21,7 @@ chain
.. code-block:: python
import paddle
def reader_creator_3(start):
def reader():
for i in range(start, start + 3):
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册