You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Paddle/doc/getstarted/index_en.rst

62 lines
1.5 KiB

GET STARTED
============
7 years ago
.. _quick_install:
Quick Install
----------------------
7 years ago
You can use pip to install PaddlePaddle with a single command, supports
7 years ago
CentOS 6 above, Ubuntu 14.04 above or MacOS 10.12, with Python 2.7 installed.
Simply run the following command to install, the version is cpu_avx_openblas:
7 years ago
.. code-block:: bash
pip install paddlepaddle
If you need to install GPU version (cuda7.5_cudnn5_avx_openblas), run:
7 years ago
.. code-block:: bash
pip install paddlepaddle-gpu
For more details about installation and build:
.. toctree::
:maxdepth: 1
build_and_install/index_en.rst
7 years ago
.. _quick_start:
Quick Start
++++++++
7 years ago
Create a new file called housing.py, and paste this Python
code:
7 years ago
.. code-block:: python
import paddle.v2 as paddle
# Initialize PaddlePaddle.
paddle.init(use_gpu=False, trainer_count=1)
# Configure the neural network.
x = paddle.layer.data(name='x', type=paddle.data_type.dense_vector(13))
y_predict = paddle.layer.fc(input=x, size=1, act=paddle.activation.Linear())
# Infer using provided test data.
probs = paddle.infer(
7 years ago
output_layer=y_predict,
parameters=paddle.dataset.uci_housing.model(),
input=[item for item in paddle.dataset.uci_housing.test()()])
7 years ago
for i in xrange(len(probs)):
7 years ago
print 'Predicted price: ${:,.2f}'.format(probs[i][0] * 1000)
7 years ago
Run :code:`python housing.py` and voila! It should print out a list of predictions
for the test housing data.