From 4ff5da19f29e54cefd7e9dd0ca619329a463c354 Mon Sep 17 00:00:00 2001 From: Hao Wang <31058429+haowang101779990@users.noreply.github.com> Date: Wed, 2 Jan 2019 21:10:57 +1100 Subject: [PATCH] fix prepare data (#524) --- doc/fluid/user_guides/howto/prepare_data/index.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/fluid/user_guides/howto/prepare_data/index.rst b/doc/fluid/user_guides/howto/prepare_data/index.rst index cacf2c7a2..2af19d8d6 100644 --- a/doc/fluid/user_guides/howto/prepare_data/index.rst +++ b/doc/fluid/user_guides/howto/prepare_data/index.rst @@ -12,7 +12,7 @@ PaddlePaddle Fluid支持两种传入数据的方式: 2. 用户需要先将训练数据 转换成 Paddle 识别的 :code:`fluid.recordio_writer` , 再使用 -:code:`fluid.layers.open_files` 以及 :code:`fluid.layers.reader` 配置数据读取。 +:code:`Python Reader` 以及 :code:`PyReader` 配置数据读取。 这两种准备数据方法的比较如下: @@ -21,9 +21,9 @@ PaddlePaddle Fluid支持两种传入数据的方式: +------------+----------------------------------+---------------------------------------+ | | Feed数据 | 使用Reader | +============+==================================+=======================================+ -| API接口 | :code:`executor.run(feed=...)` | :code:`fluid.layers.reader` | +| API接口 | :code:`executor.run(feed=...)` | :code:`fluid.layers.reader` | +------------+----------------------------------+---------------------------------------+ -| 数据格式 | Numpy Array | :code:`fluid.recordio_writer` | +| 数据格式 | Numpy Array | :code:`fluid.recordio_writer` | +------------+----------------------------------+---------------------------------------+ | 数据增强 | Python端使用其他库完成 | 使用Fluid中的Operator 完成 | +------------+----------------------------------+---------------------------------------+ -- GitLab