diff --git a/README.md b/README.md index 4aa9ca4fd5ac9e43c0c8d21bf6330c63fefb9f2b..4ff727a87b0da6d7945f94a682f9f022b04656a2 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # 深度学习入门 -1. 新手入门 [[src](fit_a_line/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/fit_a_line/README.html)] -1. 识别数字 [[src](recognize_digits/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/recognize_digits/README.html)] -1. 图像分类 [[src](image_classification/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/image_classification/README.html)] -1. 词向量 [[src](word2vec/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/word2vec/README.html)] -1. 情感分析 [[src](understand_sentiment/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/understand_sentiment/README.html)] -1. 语义角色标注 [[src](label_semantic_roles/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/label_semantic_roles/README.html)] -1. 机器翻译 [[src](machine_translation/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/machine_translation/README.html)] -1. 个性化推荐 [[src](recommender_system/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/recommender_system/README.html)] +1. 新手入门 [[fit_a_line](fit_a_line/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/fit_a_line/README.html)] +1. 识别数字 [[recognize_digits](recognize_digits/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/recognize_digits/README.html)] +1. 图像分类 [[image_classification](image_classification/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/image_classification/README.html)] +1. 词向量 [[word2vec](word2vec/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/word2vec/README.html)] +1. 情感分析 [[understand_sentiment](understand_sentiment/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/understand_sentiment/README.html)] +1. 语义角色标注 [[label_semantic_roles](label_semantic_roles/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/label_semantic_roles/README.html)] +1. 机器翻译 [[machine_translation](machine_translation/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/machine_translation/README.html)] +1. 个性化推荐 [[recommender_system](recommender_system/)] [[html](http://htmlpreview.github.io/?https://github.com/PaddlePaddle/book/blob/develop/recommender_system/README.html)]
知识共享许可协议
本教程PaddlePaddle 创作,采用 知识共享 署名-非商业性使用-相同方式共享 4.0 国际 许可协议进行许可。 diff --git a/fit_a_line/README.md b/fit_a_line/README.md index be5bbd202ef652ef7ce609aef0605c9abf2dfbeb..c8becc9de54649648ba27654c607d9ca68ae53fa 100644 --- a/fit_a_line/README.md +++ b/fit_a_line/README.md @@ -1,6 +1,8 @@ # 线性回归 让我们从经典的线性回归(Linear Regression \[[1](#参考文献)\])模型开始这份教程。在这一章里,你将使用真实的数据集建立起一个房价预测模型,并且了解到机器学习中的若干重要概念。 +本教程源代码目录在[book/fit_a_line](https://github.com/PaddlePaddle/book/tree/develop/fit_a_line), 初次使用请参考PaddlePaddle[安装教程](http://www.paddlepaddle.org/doc_cn/build_and_install/index.html)。 + ## 背景介绍 给定一个大小为$n$的数据集 ${\{y_{i}, x_{i1}, ..., x_{id}\}}_{i=1}^{n}$,其中$x_{i1}, \ldots, x_{id}$是第$i$个样本$d$个属性上的取值,$y_i$是该样本待预测的目标。线性回归模型假设目标$y_i$可以被属性间的线性组合描述,即 diff --git a/image_classification/README.md b/image_classification/README.md index dfaa1d33f3467f9ba3898fce957380c3525d03b3..d6c3bf61f5131db8e886d4ea997e6fe32f5e677b 100644 --- a/image_classification/README.md +++ b/image_classification/README.md @@ -1,6 +1,8 @@ 图像分类 ======= +本教程源代码目录在[book/image_classification](https://github.com/PaddlePaddle/book/tree/develop/image_classification), 初次使用请参考PaddlePaddle[安装教程](http://www.paddlepaddle.org/doc_cn/build_and_install/index.html)。 + ## 背景介绍 图像相比文字能够提供更加生动、容易理解及更具艺术感的信息,是人们转递与交换信息的重要来源。在本教程中,我们专注于图像识别领域的一个重要问题,即图像分类。 diff --git a/label_semantic_roles/README.md b/label_semantic_roles/README.md index 3066cc1202076eb006c9f4357b2f0a8d6b472873..a535fd6abe2d8ed3a415af852f48a0e448eaa5c5 100644 --- a/label_semantic_roles/README.md +++ b/label_semantic_roles/README.md @@ -1,5 +1,7 @@ # 语义角色标注 +本教程源代码目录在[book/label_semantic_roles](https://github.com/PaddlePaddle/book/tree/develop/label_semantic_roles), 初次使用请参考PaddlePaddle[安装教程](http://www.paddlepaddle.org/doc_cn/build_and_install/index.html)。 + ## 背景介绍 自然语言分析技术大致分为三个层面:词法分析、句法分析和语义分析。语义角色标注是实现浅层语义分析的一种方式。在一个句子中,谓词是对主语的陈述或说明,指出“做什么”、“是什么”或“怎么样,代表了一个事件的核心,跟谓词搭配的名词称为论元。语义角色是指论元在动词所指事件中担任的角色。主要有:施事者(Agent)、受事者(Patient)、客体(Theme)、经验者(Experiencer)、受益者(Beneficiary)、工具(Instrument)、处所(Location)、目标(Goal)和来源(Source)等。 diff --git a/machine_translation/README.md b/machine_translation/README.md index 72559516fa862591e1d336f1aafbb168e0bea994..f1ef06ecda058e6a40fa982eb1d933df1817597d 100644 --- a/machine_translation/README.md +++ b/machine_translation/README.md @@ -1,5 +1,7 @@ # 机器翻译 +本教程源代码目录在[book/machine_translation](https://github.com/PaddlePaddle/book/tree/develop/machine_translation), 初次使用请参考PaddlePaddle[安装教程](http://www.paddlepaddle.org/doc_cn/build_and_install/index.html)。 + ## 背景介绍 机器翻译(machine translation, MT)是用计算机来实现不同语言之间翻译的技术。被翻译的语言通常称为源语言(source language),翻译成的结果语言称为目标语言(target language)。机器翻译即实现从源语言到目标语言转换的过程,是自然语言处理的重要研究领域之一。 diff --git a/recognize_digits/README.md b/recognize_digits/README.md index c83076dc15ed0882c09db72d6fd1a5cf0279e53d..e2b8b7222d0f95ea444ebd76c3d5b9096af3fcc3 100644 --- a/recognize_digits/README.md +++ b/recognize_digits/README.md @@ -1,5 +1,7 @@ # 识别数字 +本教程源代码目录在[book/recognize_digits](https://github.com/PaddlePaddle/book/tree/develop/recognize_digits), 初次使用请参考PaddlePaddle[安装教程](http://www.paddlepaddle.org/doc_cn/build_and_install/index.html)。 + ## 背景介绍 当我们学习编程的时候,编写的第一个程序一般是实现打印"Hello World"。而机器学习(或深度学习)的入门教程,一般都是 [MNIST](http://yann.lecun.com/exdb/mnist/) 数据库上的手写识别问题。原因是手写识别属于典型的图像分类问题,比较简单,同时MNIST数据集也很完备。MNIST数据集作为一个简单的计算机视觉数据集,包含一系列如图1所示的手写数字图片和对应的标签。图片是28x28的像素矩阵,标签则对应着0~9的10个数字。每张图片都经过了大小归一化和居中处理。 diff --git a/recommender_system/README.md b/recommender_system/README.md index b16975c4d8b91e5406b9362a7b68e25c496e7add..766c2d4510ba2fc931ecd97436d6348718f66b1c 100644 --- a/recommender_system/README.md +++ b/recommender_system/README.md @@ -1,5 +1,7 @@ # 个性化推荐 +本教程源代码目录在[book/recommender_system](https://github.com/PaddlePaddle/book/tree/develop/recommender_system), 初次使用请参考PaddlePaddle[安装教程](http://www.paddlepaddle.org/doc_cn/build_and_install/index.html)。 + ## 背景介绍 在网络技术不断发展和电子商务规模不断扩大的背景下,商品数量和种类快速增长,用户需要花费大量时间才能找到自己想买的商品,这就是信息超载问题。为了解决这个难题,推荐系统(Recommender System)应运而生。 diff --git a/understand_sentiment/README.md b/understand_sentiment/README.md index 25d9d6217d5e53d993c59a981c879bca69e97229..5fb863ff20c591d782ceb0372be85f5914185135 100644 --- a/understand_sentiment/README.md +++ b/understand_sentiment/README.md @@ -1,4 +1,7 @@ # 情感分析 + +本教程源代码目录在[book/understand_sentiment](https://github.com/PaddlePaddle/book/tree/develop/understand_sentiment), 初次使用请参考PaddlePaddle[安装教程](http://www.paddlepaddle.org/doc_cn/build_and_install/index.html)。 + ## 背景介绍 在自然语言处理中,情感分析一般是指判断一段文本所表达的情绪状态。其中,一段文本可以是一个句子,一个段落或一个文档。情绪状态可以是两类,如(正面,负面),(高兴,悲伤);也可以是三类,如(积极,消极,中性)等等。情感分析的应用场景十分广泛,如把用户在购物网站(亚马逊、天猫、淘宝等)、旅游网站、电影评论网站上发表的评论分成正面评论和负面评论;或为了分析用户对于某一产品的整体使用感受,抓取产品的用户评论并进行情感分析等等。表格1展示了对电影评论进行情感分析的例子: diff --git a/word2vec/README.md b/word2vec/README.md index f2a799d65e953b25ba8dbf9a0148d47d7a81ed7d..43d607b6780cc2c0b2d43f9f03b4520f94fb900d 100644 --- a/word2vec/README.md +++ b/word2vec/README.md @@ -1,5 +1,7 @@ # 词向量 +本教程源代码目录在[book/word2vec](https://github.com/PaddlePaddle/book/tree/develop/word2vec), 初次使用请参考PaddlePaddle[安装教程](http://www.paddlepaddle.org/doc_cn/build_and_install/index.html)。 + ## 背景介绍 本章我们介绍词的向量表征,也称为word embedding。词向量是自然语言处理中常见的一个操作,是搜索引擎、广告系统、推荐系统等互联网服务背后常见的基础技术。