Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
09d59ac4
M
models
项目概览
PaddlePaddle
/
models
大约 1 年 前同步成功
通知
222
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
09d59ac4
编写于
10月 16, 2017
作者:
P
peterzhang2029
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix bug in index.html
上级
a0becc55
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
77 addition
and
4 deletion
+77
-4
nested_sequence/index.html
nested_sequence/index.html
+75
-0
nested_sequence/text_classification/README.md
nested_sequence/text_classification/README.md
+1
-0
nested_sequence/text_classification/index.html
nested_sequence/text_classification/index.html
+1
-4
未找到文件。
nested_sequence/index.html
0 → 100644
浏览文件 @
09d59ac4
<html>
<head>
<script
type=
"text/x-mathjax-config"
>
MathJax
.
Hub
.
Config
({
extensions
:
[
"
tex2jax.js
"
,
"
TeX/AMSsymbols.js
"
,
"
TeX/AMSmath.js
"
],
jax
:
[
"
input/TeX
"
,
"
output/HTML-CSS
"
],
tex2jax
:
{
inlineMath
:
[
[
'
$
'
,
'
$
'
]
],
displayMath
:
[
[
'
$$
'
,
'
$$
'
]
],
processEscapes
:
true
},
"
HTML-CSS
"
:
{
availableFonts
:
[
"
TeX
"
]
}
});
</script>
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js"
async
></script>
<script
type=
"text/javascript"
src=
"../.tools/theme/marked.js"
>
</script>
<link
href=
"http://cdn.bootcss.com/highlight.js/9.9.0/styles/darcula.min.css"
rel=
"stylesheet"
>
<script
src=
"http://cdn.bootcss.com/highlight.js/9.9.0/highlight.min.js"
></script>
<link
href=
"http://cdn.bootcss.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css"
rel=
"stylesheet"
>
<link
href=
"https://cdn.jsdelivr.net/perfect-scrollbar/0.6.14/css/perfect-scrollbar.min.css"
rel=
"stylesheet"
>
<link
href=
"../.tools/theme/github-markdown.css"
rel=
'stylesheet'
>
</head>
<style
type=
"text/css"
>
.markdown-body
{
box-sizing
:
border-box
;
min-width
:
200px
;
max-width
:
980px
;
margin
:
0
auto
;
padding
:
45px
;
}
</style>
<body>
<div
id=
"context"
class=
"container-fluid markdown-body"
>
</div>
<!-- This block will be replaced by each markdown file content. Please do not change lines below.-->
<div
id=
"markdown"
style=
'display:none'
>
# 基于双层序列的应用
## 简介
序列是自然语言处理任务面对的一种主要输入数据类型:句子由词语构成,而多个句子进一步构成了段落。因此,段落可以看作是一个嵌套的序列(或者叫作:双层序列),这个序列的每个元素又是一个序列。
双层序列是 PaddlePaddle 支持的一种非常灵活的数据组织方式,能够帮助我们更好地描述段落、多轮对话等更为复杂的语言数据。以双层序列作为输入,我们可以设计一个层次化的网络,分别从词语和句子级别编码输入数据,从而更好地完成一些复杂的语言理解任务。
本单元将介绍如何在 PaddlePaddle 中实现基于双层序列数据的具体应用。
- [基于双层序列的文本分类](https://github.com/PaddlePaddle/models/tree/develop/nested_sequence/text_classification)
</div>
<!-- You can change the lines below now. -->
<script
type=
"text/javascript"
>
marked
.
setOptions
({
renderer
:
new
marked
.
Renderer
(),
gfm
:
true
,
breaks
:
false
,
smartypants
:
true
,
highlight
:
function
(
code
,
lang
)
{
code
=
code
.
replace
(
/&/g
,
"
&
"
)
code
=
code
.
replace
(
/>/g
,
"
>
"
)
code
=
code
.
replace
(
/</g
,
"
<
"
)
code
=
code
.
replace
(
/ /g
,
"
"
)
return
hljs
.
highlightAuto
(
code
,
[
lang
]).
value
;
}
});
document
.
getElementById
(
"
context
"
).
innerHTML
=
marked
(
document
.
getElementById
(
"
markdown
"
).
innerHTML
)
</script>
</body>
nested_sequence/text_classification/README.md
浏览文件 @
09d59ac4
# 基于双层序列的文本分类
## 简介
本例将演示如何在 PaddlePaddle 中将长文本输入(通常能达到段落或者篇章基本)组织为双层序列,完成对长文本的分类任务。
...
...
nested_sequence/text_classification/index.html
浏览文件 @
09d59ac4
...
...
@@ -41,11 +41,8 @@
<!-- This block will be replaced by each markdown file content. Please do not change lines below.-->
<div
id=
"markdown"
style=
'display:none'
>
# 基于双层序列的文本分类
## 简介
序列是自然语言处理任务面对的一种主要输入数据类型:句子由词语构成,而多个句子进一步构成了段落。因此,段落可以看作是一个嵌套的序列(或者叫作:双层序列),这个序列的每个元素又是一个序列。
双层序列是 PaddlePaddle 支持的一种非常灵活的数据组织方式,能够帮助我们更好地描述段落、多轮对话等更为复杂的语言数据。以双层序列作为输入,我们可以设计一个层次化的网络,分别从词语和句子级别编码输入数据,从而更好地完成一些复杂的语言理解任务。
## 简介
本例将演示如何在 PaddlePaddle 中将长文本输入(通常能达到段落或者篇章基本)组织为双层序列,完成对长文本的分类任务。
## 模型介绍
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录