Merge branch 'develop' of https://github.com/PaddlePaddle/Paddle into add_FLAGS_use_deterministic_algo
commit
9fda5c92cd
@ -1,82 +1,82 @@
|
|||||||
Dataset
|
Dataset
|
||||||
=======
|
=======
|
||||||
|
|
||||||
.. automodule:: paddle.v2.dataset
|
.. automodule:: paddle.dataset
|
||||||
:members:
|
:members:
|
||||||
:noindex:
|
:noindex:
|
||||||
|
|
||||||
mnist
|
mnist
|
||||||
+++++
|
+++++
|
||||||
|
|
||||||
.. automodule:: paddle.v2.dataset.mnist
|
.. automodule:: paddle.dataset.mnist
|
||||||
:members:
|
:members:
|
||||||
:noindex:
|
:noindex:
|
||||||
|
|
||||||
cifar
|
cifar
|
||||||
+++++
|
+++++
|
||||||
|
|
||||||
.. automodule:: paddle.v2.dataset.cifar
|
.. automodule:: paddle.dataset.cifar
|
||||||
:members:
|
:members:
|
||||||
:noindex:
|
:noindex:
|
||||||
|
|
||||||
conll05
|
conll05
|
||||||
+++++++
|
+++++++
|
||||||
|
|
||||||
.. automodule:: paddle.v2.dataset.conll05
|
.. automodule:: paddle.dataset.conll05
|
||||||
:members: get_dict,get_embedding,test
|
:members: get_dict,get_embedding,test
|
||||||
:noindex:
|
:noindex:
|
||||||
|
|
||||||
imdb
|
imdb
|
||||||
++++
|
++++
|
||||||
|
|
||||||
.. automodule:: paddle.v2.dataset.imdb
|
.. automodule:: paddle.dataset.imdb
|
||||||
:members:
|
:members:
|
||||||
:noindex:
|
:noindex:
|
||||||
|
|
||||||
imikolov
|
imikolov
|
||||||
++++++++
|
++++++++
|
||||||
|
|
||||||
.. automodule:: paddle.v2.dataset.imikolov
|
.. automodule:: paddle.dataset.imikolov
|
||||||
:members:
|
:members:
|
||||||
:noindex:
|
:noindex:
|
||||||
|
|
||||||
movielens
|
movielens
|
||||||
+++++++++
|
+++++++++
|
||||||
|
|
||||||
.. automodule:: paddle.v2.dataset.movielens
|
.. automodule:: paddle.dataset.movielens
|
||||||
:members:
|
:members:
|
||||||
:noindex:
|
:noindex:
|
||||||
|
|
||||||
.. autoclass:: paddle.v2.dataset.movielens.MovieInfo
|
.. autoclass:: paddle.dataset.movielens.MovieInfo
|
||||||
:noindex:
|
:noindex:
|
||||||
|
|
||||||
.. autoclass:: paddle.v2.dataset.movielens.UserInfo
|
.. autoclass:: paddle.dataset.movielens.UserInfo
|
||||||
:noindex:
|
:noindex:
|
||||||
|
|
||||||
sentiment
|
sentiment
|
||||||
+++++++++
|
+++++++++
|
||||||
|
|
||||||
.. automodule:: paddle.v2.dataset.sentiment
|
.. automodule:: paddle.dataset.sentiment
|
||||||
:members:
|
:members:
|
||||||
:noindex:
|
:noindex:
|
||||||
|
|
||||||
uci_housing
|
uci_housing
|
||||||
+++++++++++
|
+++++++++++
|
||||||
|
|
||||||
.. automodule:: paddle.v2.dataset.uci_housing
|
.. automodule:: paddle.dataset.uci_housing
|
||||||
:members:
|
:members:
|
||||||
:noindex:
|
:noindex:
|
||||||
|
|
||||||
wmt14
|
wmt14
|
||||||
+++++
|
+++++
|
||||||
|
|
||||||
.. automodule:: paddle.v2.dataset.wmt14
|
.. automodule:: paddle.dataset.wmt14
|
||||||
:members:
|
:members:
|
||||||
:noindex:
|
:noindex:
|
||||||
|
|
||||||
wmt16
|
wmt16
|
||||||
+++++
|
+++++
|
||||||
|
|
||||||
.. automodule:: paddle.v2.dataset.wmt16
|
.. automodule:: paddle.dataset.wmt16
|
||||||
:members:
|
:members:
|
||||||
:noindex:
|
:noindex:
|
||||||
|
@ -1,19 +1,35 @@
|
|||||||
Use different clusters
|
Use different clusters
|
||||||
======================
|
======================
|
||||||
|
|
||||||
PaddlePaddle supports running jobs on several platforms including:
|
The user's cluster environment is not the same. To facilitate everyone's deployment, we provide a variety of cluster deployment methods to facilitate the submission of cluster training tasks, which will be introduced as follows:
|
||||||
- `Kubernetes <http://kubernetes.io>`_ open-source system for automating deployment, scaling, and management of containerized applications from Google.
|
|
||||||
- `OpenMPI <https://www.open-mpi.org>`_ Mature high performance parallel computing framework.
|
|
||||||
- `Fabric <http://www.fabfile.org>`_ A cluster management tool. Write scripts to submit jobs or manage the cluster.
|
|
||||||
|
|
||||||
We'll introduce cluster job management on these platforms. The examples can be found under `cluster_train_v2 <https://github.com/PaddlePaddle/Paddle/tree/develop/paddle/scripts/cluster_train_v2>`_ .
|
`Kubernetes <http://kubernetes.io>`_ is a scheduling framework of Google open source container cluster, supporting a complete cluster solution for large-scale cluster production environment. The following guidelines show PaddlePaddle's support for Kubernetes:
|
||||||
|
|
||||||
These cluster platforms provide API or environment variables for training processes, when the job is dispatched to different nodes. Like node ID, IP or total number of nodes etc.
|
.. toctree::
|
||||||
|
:maxdepth: 1
|
||||||
|
|
||||||
|
k8s_cn.md
|
||||||
|
k8s_distributed_cn.md
|
||||||
|
|
||||||
|
`OpenMPI <https://www.open-mpi.org>`_ is a mature high-performance parallel computing framework, which is widely used in the field of HPC. The following guide describes how to use OpenMPI to build PaddlePaddle's cluster training task:
|
||||||
|
|
||||||
.. toctree::
|
.. toctree::
|
||||||
:maxdepth: 1
|
:maxdepth: 1
|
||||||
|
|
||||||
fabric_en.md
|
openmpi_cn.md
|
||||||
openmpi_en.md
|
|
||||||
k8s_en.md
|
`Fabric <http://www.fabfile.org>`_ is a convenient tool for program deployment and management. We provide a way to deploy and manage with Fabric. If you want to know more about it, please read the following guidelines:
|
||||||
k8s_aws_en.md
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 1
|
||||||
|
|
||||||
|
fabric_cn.md
|
||||||
|
|
||||||
|
We also support the deployment of PaddlePaddle on AWS. Learn more about:
|
||||||
|
|
||||||
|
.. toctree::
|
||||||
|
:maxdepth: 1
|
||||||
|
|
||||||
|
k8s_aws_cn.md
|
||||||
|
|
||||||
|
The examples can be found under `cluster_train_v2 <https://github.com/PaddlePaddle/Paddle/tree/develop/paddle/scripts/cluster_train_v2>`_ .
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue