Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PALM
提交
39aef4f6
P
PALM
项目概览
PaddlePaddle
/
PALM
通知
5
Star
3
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PALM
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
39aef4f6
编写于
10月 17, 2019
作者:
R
root
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix py3 and win bugs
上级
a1344ac1
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
15 addition
and
11 deletion
+15
-11
.gitignore
.gitignore
+4
-0
run.sh
run.sh
+2
-2
utils/tokenization.py
utils/tokenization.py
+9
-9
未找到文件。
.gitignore
0 → 100644
浏览文件 @
39aef4f6
*.pyc
__pycache__
pretrain_model
output_model
run.sh
浏览文件 @
39aef4f6
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
export
FLAGS_sync_nccl_allreduce
=
0
export
FLAGS_sync_nccl_allreduce
=
0
export
FLAGS_eager_delete_tensor_gb
=
1
export
FLAGS_eager_delete_tensor_gb
=
1
export
CUDA_VISIBLE_DEVICES
=
0
export
CUDA_VISIBLE_DEVICES
=
2
if
[[
!
-d
pretrain_model/bert
]]
;
then
if
[[
!
-d
pretrain_model/bert
]]
;
then
bash download_pretrain.sh bert
bash download_pretrain.sh bert
...
@@ -14,5 +14,5 @@ if [[ ! -d pretrain_model/ernie ]]; then
...
@@ -14,5 +14,5 @@ if [[ ! -d pretrain_model/ernie ]]; then
bash download_pretrain.sh ernie
bash download_pretrain.sh ernie
fi
fi
python
-u
mtl_run.py
python
3.5
-u
mtl_run.py
utils/tokenization.py
浏览文件 @
39aef4f6
...
@@ -68,15 +68,15 @@ def printable_text(text):
...
@@ -68,15 +68,15 @@ def printable_text(text):
def
load_vocab
(
vocab_file
):
def
load_vocab
(
vocab_file
):
"""Loads a vocabulary file into a dictionary."""
"""Loads a vocabulary file into a dictionary."""
vocab
=
collections
.
OrderedDict
()
vocab
=
collections
.
OrderedDict
()
fin
=
io
.
open
(
vocab_file
,
encoding
=
"utf8"
)
with
io
.
open
(
vocab_file
,
encoding
=
"utf8"
)
as
fin
:
for
num
,
line
in
enumerate
(
fin
):
for
num
,
line
in
enumerate
(
fin
):
items
=
convert_to_unicode
(
line
.
strip
()).
split
(
"
\t
"
)
items
=
convert_to_unicode
(
line
.
strip
()).
split
(
"
\t
"
)
if
len
(
items
)
>
2
:
if
len
(
items
)
>
2
:
break
break
token
=
items
[
0
]
token
=
items
[
0
]
index
=
items
[
1
]
if
len
(
items
)
==
2
else
num
index
=
items
[
1
]
if
len
(
items
)
==
2
else
num
token
=
token
.
strip
()
token
=
token
.
strip
()
vocab
[
token
]
=
int
(
index
)
vocab
[
token
]
=
int
(
index
)
return
vocab
return
vocab
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录