From 2c36906aa10622f0376ca9bd89fd0df4c09c580f Mon Sep 17 00:00:00 2001 From: TCChenLong <1300851984@qq.com> Date: Mon, 2 Aug 2021 21:41:26 +0800 Subject: [PATCH 1/5] add practices to index --- docs/index_cn.rst | 2 +- docs/practices/index_cn.rst | 57 +++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+), 1 deletion(-) create mode 100644 docs/practices/index_cn.rst diff --git a/docs/index_cn.rst b/docs/index_cn.rst index 81cb508e644..7292837010b 100644 --- a/docs/index_cn.rst +++ b/docs/index_cn.rst @@ -13,7 +13,7 @@ install/index_cn.rst guides/index_cn.rst - tutorial/index_cn.rst + practices/index_cn.rst api/index_cn.rst faq/index_cn.rst release_note_cn.md diff --git a/docs/practices/index_cn.rst b/docs/practices/index_cn.rst new file mode 100644 index 00000000000..aa1fd5091c0 --- /dev/null +++ b/docs/practices/index_cn.rst @@ -0,0 +1,57 @@ +######## +应用实践 +######## + +如果你已经初步了解了PaddlePaddle,期望可以针对实际问题建模、搭建自己网络,本模块提供了一些 Paddle 的具体典型案例供您参考: + +本章文档将指导你如何使用PaddlePaddle完成基础的深度学习任务 + +快速开始: + + - `hello paddle <./hello_paddle/hello_paddle.html>`_ :简单介绍 Paddle,完成您的第一个Paddle项目。 + - `Paddle 动态图 <./dynamic_graph/dynamic_graph.html>`_ :介绍使用 Paddle 动态图。 + - `高层API详细介绍 <./high_level_api/high_level_api.html>`_ :详细介绍Paddle高层API。 + - `模型加载与保存 <./save_model/save_model.html>`_ :介绍Paddle 模型的加载与保存。 + - `线性回归 <./linear_regression/linear_regression.html>`_ :介绍使用 Paddle 实现线性回归任务。 + +CV方向如下: + + - `图像分类 <./image_classification/image_classification.html>`_ :介绍使用 Paddle 在MNIST数据集上完成图像分类。 + - `图像分类 <./convnet_image_classification/convnet_image_classification.html>`_ :介绍使用 Paddle 在Cifar10数据集上完成图像分类。 + - `以图搜图 <./image_search/image_search.html>`_ : 介绍使用Paddle 实现以图搜图。 + - `图像分割 <./image_segmentation/image_segmentation.html>`_ : 介绍使用 Paddle 实现U-Net模型完成图像分割。 + - `OCR <./image_ocr/image_ocr.html>`_ : 介绍使用 Paddle 实现 OCR。 + - `图像超分 <./super_resolution_sub_pixel/super_resolution_sub_pixel.html>`_ : 介绍使用 Paddle 完成图像超分。 + +NLP方向如下: + + - `N-Gram <./n_gram_model/n_gram_model.html>`_ :介绍使用 Paddle 实现N-Gram 模型。 + - `文本分类 <./imdb_bow_classification/imdb_bow_classification.html>`_ :介绍使用 Paddle 在IMDB数据集上完成文本分类。 + - `文本翻译 <./seq2seq_with_attention/seq2seq_with_attention.html>`_ :介绍使用 Paddle 实现文本翻译。 + - `数字加法 <./addition_rnn/addition_rnn.html>`_ : 介绍使用 Paddle 实现数字加法。 + +推荐方向如下: + + - `电影推荐 <./Collaborative_filtering/Collaborative_filtering.html>`_ : 介绍使用 Paddle 实现协同过滤完成电影推荐。 + +强化学习方向如下: + + - `演员-评论家算法 <./Actor_Critic_Method/Actor_Critic_Method.html>`_ : 介绍使用 Paddle 实现演员-评论家算法。 + - `优势-演员-评论家算法(A2C) <./Advantage_Actor_Critic/Advantage_Actor_Critic.html>`_ : 介绍使用 Paddle 实现 A2C 算法。 + - `深度确定梯度策略(DDPG) <./Deep_Deterministic_Policy_Gradient/Deep_Deterministic_Policy_Gradient.html>`_ : 介绍使用 Paddle 实现 DDPG 算法。 + +时间序列如下: + + - `异常数据检测 <./Autoencoder/AutoEncoder.html>`_ : 介绍使用 Paddle 完成时序数据异常点检测。 + + + +.. toctree:: + :hidden: + + quick_start/index_cn.rst + cv_case/index_cn.rst + nlp_case/index_cn.rst + time_series/index_cn.rst + reinforcement_learning/index_cn.rst + recommendations/index_cn.rst \ No newline at end of file From 4622058068c5f959b2770edbe6c7228910da7942 Mon Sep 17 00:00:00 2001 From: TCChenLong <1300851984@qq.com> Date: Mon, 2 Aug 2021 22:10:40 +0800 Subject: [PATCH 2/5] update index --- docs/practices/index_cn.rst | 30 +++++++++++++++++++++--------- 1 file changed, 21 insertions(+), 9 deletions(-) diff --git a/docs/practices/index_cn.rst b/docs/practices/index_cn.rst index aa1fd5091c0..2666a88fd62 100644 --- a/docs/practices/index_cn.rst +++ b/docs/practices/index_cn.rst @@ -46,12 +46,24 @@ NLP方向如下: -.. toctree:: - :hidden: - - quick_start/index_cn.rst - cv_case/index_cn.rst - nlp_case/index_cn.rst - time_series/index_cn.rst - reinforcement_learning/index_cn.rst - recommendations/index_cn.rst \ No newline at end of file +.. toctree:: + :glob: + :maxdepth: 1 + :caption: 快速开始 + + hello_paddle/hello_paddle + dynamic_graph/dynamic_graph + high_level_api/high_level_api + save_model/save_model + linear_regression/linear_regression + +.. toctree:: + :glob: + :maxdepth: 1 + :caption: 计算机视觉 + + hello_paddle/hello_paddle.ipynb + dynamic_graph/dynamic_graph.ipynb + high_level_api/high_level_api.ipynb + save_model/save_model.ipynb + linear_regression/linear_regression.ipynb From 8dba36c25948a691b7ac7b5ea881a9a5923e97d9 Mon Sep 17 00:00:00 2001 From: Chen Long <1300851984@qq.com> Date: Sun, 15 Aug 2021 13:42:05 +0800 Subject: [PATCH 3/5] Update index_cn.rst --- docs/practices/index_cn.rst | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/docs/practices/index_cn.rst b/docs/practices/index_cn.rst index 2666a88fd62..0adc7445807 100644 --- a/docs/practices/index_cn.rst +++ b/docs/practices/index_cn.rst @@ -56,14 +56,3 @@ NLP方向如下: high_level_api/high_level_api save_model/save_model linear_regression/linear_regression - -.. toctree:: - :glob: - :maxdepth: 1 - :caption: 计算机视觉 - - hello_paddle/hello_paddle.ipynb - dynamic_graph/dynamic_graph.ipynb - high_level_api/high_level_api.ipynb - save_model/save_model.ipynb - linear_regression/linear_regression.ipynb From f01297ca746db979d16bb21c75b7a6fd37029bde Mon Sep 17 00:00:00 2001 From: Chen Long <1300851984@qq.com> Date: Sun, 15 Aug 2021 14:29:52 +0800 Subject: [PATCH 4/5] Update index_cn.rst --- docs/practices/index_cn.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/practices/index_cn.rst b/docs/practices/index_cn.rst index 0adc7445807..83492fda9d1 100644 --- a/docs/practices/index_cn.rst +++ b/docs/practices/index_cn.rst @@ -47,9 +47,7 @@ NLP方向如下: .. toctree:: - :glob: - :maxdepth: 1 - :caption: 快速开始 + :caption: 快速开始: hello_paddle/hello_paddle dynamic_graph/dynamic_graph From 3bb57aabc9bb72a1f5701c52c46b06e204a6ddb6 Mon Sep 17 00:00:00 2001 From: TCChenlong <1300851984@qq.com> Date: Sun, 15 Aug 2021 15:26:33 +0800 Subject: [PATCH 5/5] update index --- docs/practices/index_cn.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/practices/index_cn.rst b/docs/practices/index_cn.rst index 83492fda9d1..67d696f3b2e 100644 --- a/docs/practices/index_cn.rst +++ b/docs/practices/index_cn.rst @@ -45,7 +45,6 @@ NLP方向如下: - `异常数据检测 <./Autoencoder/AutoEncoder.html>`_ : 介绍使用 Paddle 完成时序数据异常点检测。 - .. toctree:: :caption: 快速开始: