Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
3366cf65
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看板
未验证
提交
3366cf65
编写于
12月 15, 2020
作者:
S
Steffy-zxf
提交者:
GitHub
12月 15, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update docs for ernie-tiny
update docs for ernie-tiny
上级
b725cbd0
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
4 addition
and
4 deletion
+4
-4
PaddleNLP/examples/text_matching/sentence_transformers/README.md
...LP/examples/text_matching/sentence_transformers/README.md
+2
-2
PaddleNLP/examples/text_matching/sentence_transformers/train.py
...NLP/examples/text_matching/sentence_transformers/train.py
+2
-2
未找到文件。
PaddleNLP/examples/text_matching/sentence_transformers/README.md
浏览文件 @
3366cf65
...
...
@@ -48,7 +48,7 @@ PaddleNLP提供了丰富的预训练模型,并且可以便捷地获取PaddlePa
| bert-base-chinese | 0.86537 | 0.84440 |
| bert-wwm-chinese | 0.86333 | 0.84128 |
| bert-wwm-ext-chinese | 0.86049 | 0.83848 |
| ernie | 0.87480 | 0.84760 |
| ernie
-1.0
| 0.87480 | 0.84760 |
| ernie-tiny | 0.86071 | 0.83352 |
| roberta-wwm-ext | 0.87526 | 0.84904 |
| rbt3 | 0.85367 | 0.83464 |
...
...
@@ -98,7 +98,7 @@ python train.py --model_type ernie --model_name ernie-1.0 --n_gpu 1 --save_dir .
*
`model_name`
: 必选,具体的模型简称。
如
`model_type=ernie`
,则model_name可以选择
`ernie-1.0`
和
`ernie-tiny`
。
如
`model_type=bert`
,则model_name可以选择
`bert-base-chinese`
,
`bert-wwm-chinese`
,
`bert-wwm-ext-chinese`
。
如
`model_type=roberta`
,则model_name可以选择
`roberta-wwm-ext
-large`
,
`roberta-wwm-ext
`
,
`rbt3`
,
`rbtl3`
。
如
`model_type=roberta`
,则model_name可以选择
`roberta-wwm-ext`
,
`rbt3`
,
`rbtl3`
。
*
`save_dir`
:必选,保存训练模型的目录。
*
`max_seq_length`
:可选,ERNIE/BERT模型使用的最大序列长度,最大不能超过512, 若出现显存不足,请适当调低这一参数;默认为128。
*
`batch_size`
:可选,批处理大小,请结合显存情况进行调整,若出现显存不足,请适当调低这一参数;默认为32。
...
...
PaddleNLP/examples/text_matching/sentence_transformers/train.py
浏览文件 @
3366cf65
...
...
@@ -248,8 +248,8 @@ def do_train(args):
train_dataset
,
dev_dataset
,
test_dataset
=
ppnlp
.
datasets
.
LCQMC
.
get_datasets
(
[
'train'
,
'dev'
,
'test'
])
if
args
.
model_name
==
'ernie
_
tiny'
:
# ErnieTinyTokenizer is special for ernie
_
tiny pretained model.
if
args
.
model_name
==
'ernie
-
tiny'
:
# ErnieTinyTokenizer is special for ernie
-
tiny pretained model.
tokenizer
=
ppnlp
.
transformers
.
ErnieTinyTokenizer
.
from_pretrained
(
args
.
model_name
)
else
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录