Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
0aaa92db
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看板
未验证
提交
0aaa92db
编写于
12月 19, 2017
作者:
P
peterzhang2029
提交者:
GitHub
12月 19, 2017
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #554 from peterzhang2029/dssm_doc_refine
Refine the readme.md of DSSM.
上级
fd1f7af5
dc887dfe
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
32 addition
and
32 deletion
+32
-32
dssm/README.cn.md
dssm/README.cn.md
+16
-16
dssm/README.md
dssm/README.md
+16
-16
未找到文件。
dssm/README.cn.md
浏览文件 @
0aaa92db
...
@@ -216,49 +216,49 @@ Pairwise Rank复用上面的DNN结构,同一个source对两个target求相似
...
@@ -216,49 +216,49 @@ Pairwise Rank复用上面的DNN结构,同一个source对两个target求相似
### 回归的数据格式
### 回归的数据格式
```
```
# 3 fields each line:
# 3 fields each line:
# - source
's word ids
# - source
word list
# - target
's word ids
# - target
word list
# - target
# - target
<
ids> \t <ids
> \t <float>
<
word list> \t <word list
> \t <float>
```
```
比如:
比如:
```
```
3 6 10 \t 6 8 33 \t 0.7
苹果 六 袋 苹果 6s 0.1
6 0 \t 6 9 330 \t 0.03
新手 汽车 驾驶 驾校 培训 0.9
```
```
### 分类的数据格式
### 分类的数据格式
```
```
# 3 fields each line:
# 3 fields each line:
# - source
's word ids
# - source
word list
# - target
's word ids
# - target
word list
# - target
# - target
<
ids> \t <ids
> \t <label>
<
word list> \t <word list
> \t <label>
```
```
比如:
比如:
```
```
3 6 10 \t 6 8 33 \t
0
苹果 六 袋 苹果 6s
0
6 10 \t 8 3 1 \t
1
新手 汽车 驾驶 驾校 培训
1
```
```
### 排序的数据格式
### 排序的数据格式
```
```
# 4 fields each line:
# 4 fields each line:
# - source
's word ids
# - source
word list
# - target1
's word ids
# - target1
word list
# - target2
's word ids
# - target2
word list
# - label
# - label
<
ids> \t <ids> \t <ids
> \t <label>
<
word list> \t <word list> \t <word list
> \t <label>
```
```
比如:
比如:
```
```
7 2 4 \t 2 10 12 \t 9 2 7 10 23 \t 0
苹果 六 袋 苹果 6s 新手 汽车 驾驶 1
7 2 4 \t 10 12 \t 9 2 21 23 \t
1
新手 汽车 驾驶 驾校 培训 苹果 6s
1
```
```
## 执行训练
## 执行训练
...
...
dssm/README.md
浏览文件 @
0aaa92db
...
@@ -190,52 +190,52 @@ Below is a simple example for the data in `./data`
...
@@ -190,52 +190,52 @@ Below is a simple example for the data in `./data`
### Regression data format
### Regression data format
```
```
# 3 fields each line:
# 3 fields each line:
# - source
's word ids
# - source
word list
# - target
's word ids
# - target
word list
# - target
# - target
<
ids> \t <ids
> \t <float>
<
word list> \t <word list
> \t <float>
```
```
The example of this format is as follows.
The example of this format is as follows.
```
```
3 6 10 \t 6 8 33 \t 0.7
Six bags of apples Apple 6s 0.1
6 0 \t 6 9 330 \t 0.03
The new driver The driving school 0.9
```
```
### Classification data format
### Classification data format
```
```
# 3 fields each line:
# 3 fields each line:
# - source
's word ids
# - source
word list
# - target
's word ids
# - target
word list
# - target
# - target
<
ids> \t <ids
> \t <label>
<
word list> \t <word list
> \t <label>
```
```
The example of this format is as follows.
The example of this format is as follows.
```
```
3 6 10 \t 6 8 33 \t
0
Six bags of apples Apple 6s
0
6 10 \t 8 3 1 \t
1
The new driver The driving school
1
```
```
### Ranking data format
### Ranking data format
```
```
# 4 fields each line:
# 4 fields each line:
# - source
's word ids
# - source
word list
# - target1
's word ids
# - target1
word list
# - target2
's word ids
# - target2
word list
# - label
# - label
<
ids> \t <ids> \t <ids
> \t <label>
<
word list> \t <word list> \t <word list
> \t <label>
```
```
The example of this format is as follows.
The example of this format is as follows.
```
```
7 2 4 \t 2 10 12 \t 9 2 7 10 23 \t 0
Six bags of apples Apple 6s The new driver 1
7 2 4 \t 10 12 \t 9 2 21 23 \t
1
The new driver The driving school Apple 6s
1
```
```
## Training
## Training
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录