提交 89f0072a 编写于 作者: L Luo Tao

add file extensions in doc/

上级 dc8fcb8a
...@@ -32,11 +32,3 @@ Each line of train.list and test.list is an absolute or relative path (relative ...@@ -32,11 +32,3 @@ Each line of train.list and test.list is an absolute or relative path (relative
to the PaddePaddle program runtime) of data file. Fascinatingly more, each line to the PaddePaddle program runtime) of data file. Fascinatingly more, each line
can also be a HDFS file path or a SQL connection string. As long as the user can also be a HDFS file path or a SQL connection string. As long as the user
assures how to access each file in DataProvider. assures how to access each file in DataProvider.
Please refer to the following articles for more information about the detail
usages of DataProvider and how to implement a new DataProvider,
.. toctree::
pydataprovider2.rst
write_new_dataprovider.rst
...@@ -7,8 +7,8 @@ DataProvider API ...@@ -7,8 +7,8 @@ DataProvider API
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
data_provider/index.rst data_provider/index_en.rst
data_provider/pydataprovider2.rst data_provider/pydataprovider2_en.rst
Model Config API Model Config API
---------------- ----------------
...@@ -16,7 +16,6 @@ Model Config API ...@@ -16,7 +16,6 @@ Model Config API
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
trainer_config_helpers/index.rst
trainer_config_helpers/optimizers.rst trainer_config_helpers/optimizers.rst
trainer_config_helpers/data_sources.rst trainer_config_helpers/data_sources.rst
trainer_config_helpers/layers.rst trainer_config_helpers/layers.rst
...@@ -33,4 +32,4 @@ Applications API ...@@ -33,4 +32,4 @@ Applications API
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
predict/swig_py_paddle_en.rst predict/swig_py_paddle_en.rst
\ No newline at end of file
...@@ -6,10 +6,9 @@ Install PaddlePaddle ...@@ -6,10 +6,9 @@ Install PaddlePaddle
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
:glob:
docker_install.rst docker_install_en.rst
ubuntu_install.rst ubuntu_install_en.rst
Build from Source Build from Source
----------------- -----------------
...@@ -20,6 +19,5 @@ Build from Source ...@@ -20,6 +19,5 @@ Build from Source
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
:glob:
build_from_source.md build_from_source_en.md
\ No newline at end of file
...@@ -4,5 +4,5 @@ GET STARTED ...@@ -4,5 +4,5 @@ GET STARTED
.. toctree:: .. toctree::
:maxdepth: 2 :maxdepth: 2
build_and_install/index.rst build_and_install/index_en.rst
basic_usage/basic_usage.rst basic_usage/index_en.rst
# How to Set Command-line Parameters
* [Use Case](use_case.md)
* [Arguments](arguments.md)
* [Detailed Descriptions](detail_introduction.md)
# How to Set Command-line Parameters
* [Use Case](use_case_en.md)
* [Arguments](arguments_en.md)
* [Detailed Descriptions](detail_introduction_en.md)
...@@ -4,4 +4,4 @@ How to Configure Deep Models ...@@ -4,4 +4,4 @@ How to Configure Deep Models
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
rnn/rnn.rst rnn/rnn_en.rst
...@@ -7,9 +7,9 @@ Usage ...@@ -7,9 +7,9 @@ Usage
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
cmd_parameter/index.md cmd_parameter/index_en.md
deep_model/index.rst deep_model/index_en.rst
cluster/cluster_train.md cluster/cluster_train_en.md
Development Development
------------ ------------
...@@ -17,8 +17,8 @@ Development ...@@ -17,8 +17,8 @@ Development
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
new_layer/index.rst new_layer/index_en.rst
contribute_to_paddle.md contribute_to_paddle_en.md
Optimization Optimization
------------- -------------
...@@ -26,4 +26,4 @@ Optimization ...@@ -26,4 +26,4 @@ Optimization
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
optimization/index.rst optimization/index_en.rst
...@@ -4,4 +4,4 @@ How to Tune GPU Performance ...@@ -4,4 +4,4 @@ How to Tune GPU Performance
.. toctree:: .. toctree::
:maxdepth: 3 :maxdepth: 3
gpu_profiling.rst gpu_profiling_en.rst
...@@ -4,9 +4,8 @@ PaddlePaddle Documentation ...@@ -4,9 +4,8 @@ PaddlePaddle Documentation
.. toctree:: .. toctree::
:maxdepth: 1 :maxdepth: 1
getstarted/index.rst getstarted/index_en.rst
tutorials/index.md tutorials/index_en.md
howto/index.rst howto/index_en.rst
api/index.rst api/index_en.rst
about/index.rst about/index_en.rst
\ No newline at end of file
Image Classification Tutorial
=============================
.. toctree::
:maxdepth: 3
:glob:
Training Locally <image_classification.md>
cluster_train/internal/cluster_train.md
cluster_train/opensource/cluster_train.md
# TUTORIALS
There are serveral examples and demos here.
## Image
* [Image Classification](image_classification/index.rst)
## NLP
* [Sentiment Analysis](sentiment_analysis/index.rst)
* [Text Generation](text_generation/index.rst)
* [Semantic Role Labeling](semantic_role_labeling/index.rst)
## Recommendation
* [MovieLens Dataset](rec/ml_dataset.md)
* [MovieLens Regression](rec/ml_regression.rst)
## Model Zoo
* [ImageNet: ResNet](imagenet_model/resnet_model.md)
* [Embedding: Chinese Word](embedding_model/index.md)
# TUTORIALS
There are serveral examples and demos here.
## [Quick Start](quick_start/index_en.md)
## Image
* [Image Classification](image_classification/index_en.md)
## NLP
* [Sentiment Analysis](sentiment_analysis/index_en.md)
* [Text Generation](text_generation/index_en.md)
* [Semantic Role Labeling](semantic_role_labeling/index_en.md)
## Recommendation
* [MovieLens Dataset](rec/ml_dataset_en.md)
* [MovieLens Regression](rec/ml_regression_en.rst)
## Model Zoo
* [ImageNet: ResNet](imagenet_model/resnet_model_en.md)
* [Embedding: Chinese Word](embedding_model/index_en.md)
Semantic Role Labeling Tutorial
===============================
.. toctree::
:maxdepth: 3
semantic_role_labeling.md
Sentiment Analasis Tutorial
===========================
.. toctree::
:maxdepth: 3
:glob:
Training Locally <sentiment_analysis.md>
internal/cluster_train.md
Text Generation Tutorial
========================
.. toctree::
:maxdepth: 3
:glob:
Training Locally <text_generation.md>
internal/cluster_train.md
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册