quickstart_cn.rst 1.4 KB
Newer Older
T
tangwei12 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
快速开始
========

快速安装
--------

PaddlePaddle支持使用pip快速安装,目前支持CentOS 6以上, Ubuntu 14.04以及MacOS 10.12,并安装有Python2.7。
执行下面的命令完成快速安装,版本为cpu_avx_openblas:

  .. code-block:: bash

     pip install paddlepaddle

W
weixing02 已提交
14
如果需要安装支持GPU的版本(cuda8.0_cudnn5_avx_openblas),需要执行:
T
tangwei12 已提交
15 16 17 18 19

  .. code-block:: bash

     pip install paddlepaddle-gpu

20
更详细的安装和编译方法参考: :ref:`install_steps` 。
T
tangwei12 已提交
21 22 23 24 25 26 27

快速使用
--------

创建一个 housing.py 并粘贴此Python代码:

  .. code-block:: python
28 29

     import paddle.dataset.uci_housing as uci_housing
T
tangwei12 已提交
30
     import paddle.fluid as fluid
W
weixing02 已提交
31

T
tangwei12 已提交
32
     with fluid.scope_guard(fluid.core.Scope()):
33 34
         # initialize executor with cpu
         exe = fluid.Executor(place=fluid.CPUPlace())
W
weixing02 已提交
35
         # load inference model
T
tangwei12 已提交
36
         [inference_program, feed_target_names,fetch_targets] =  \
37 38
             fluid.io.load_inference_model(uci_housing.fluid_model(), exe)
         # run inference
W
weixing02 已提交
39 40
         result = exe.run(inference_program,
                          feed={feed_target_names[0]: uci_housing.predict_reader()},
41
                          fetch_list=fetch_targets)
W
weixing02 已提交
42
         # print predicted price is $12,273.97
43 44
         print 'Predicted price: ${:,.2f}'.format(result[0][0][0] * 1000)

T
tangwei12 已提交
45
执行 :code:`python housing.py` 瞧! 它应该打印出预测住房数据的清单。