Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
e7a63d72
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看板
未验证
提交
e7a63d72
编写于
3月 11, 2020
作者:
Y
Yibing Liu
提交者:
GitHub
3月 11, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add paddle version check (#4399)
上级
d7bdc908
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
23 addition
and
4 deletion
+23
-4
PaddleNLP/pretrain_langauge_models/BERT/README.md
PaddleNLP/pretrain_langauge_models/BERT/README.md
+1
-1
PaddleNLP/pretrain_langauge_models/BERT/run_classifier.py
PaddleNLP/pretrain_langauge_models/BERT/run_classifier.py
+2
-1
PaddleNLP/pretrain_langauge_models/BERT/run_squad.py
PaddleNLP/pretrain_langauge_models/BERT/run_squad.py
+2
-1
PaddleNLP/pretrain_langauge_models/BERT/train.py
PaddleNLP/pretrain_langauge_models/BERT/train.py
+2
-1
PaddleNLP/pretrain_langauge_models/BERT/utils/args.py
PaddleNLP/pretrain_langauge_models/BERT/utils/args.py
+16
-0
未找到文件。
PaddleNLP/pretrain_langauge_models/BERT/README.md
浏览文件 @
e7a63d72
...
...
@@ -72,7 +72,7 @@
```
## 安装
本项目依赖于 Paddle Fluid
**1.
6.0
**
及以上版本,请参考
[
安装指南
](
http://www.paddlepaddle.org/#quick-start
)
进行安装。如果需要进行 TensorFlow 模型到 Paddle Fluid 参数的转换,则需要同时安装 TensorFlow 1.12。
本项目依赖于 Paddle Fluid
**1.
7.1
**
及以上版本,请参考
[
安装指南
](
http://www.paddlepaddle.org/#quick-start
)
进行安装。如果需要进行 TensorFlow 模型到 Paddle Fluid 参数的转换,则需要同时安装 TensorFlow 1.12。
## 预训练
...
...
PaddleNLP/pretrain_langauge_models/BERT/run_classifier.py
浏览文件 @
e7a63d72
...
...
@@ -38,7 +38,7 @@ import reader.cls as reader
from
model.bert
import
BertConfig
from
model.classifier
import
create_model
from
optimization
import
optimization
from
utils.args
import
ArgumentGroup
,
print_arguments
,
check_cuda
from
utils.args
import
ArgumentGroup
,
print_arguments
,
check_cuda
,
check_version
from
utils.init
import
init_pretraining_params
,
init_checkpoint
from
utils.cards
import
get_cards
import
dist_utils
...
...
@@ -447,4 +447,5 @@ def main(args):
if
__name__
==
'__main__'
:
print_arguments
(
args
)
check_cuda
(
args
.
use_cuda
)
check_version
()
main
(
args
)
PaddleNLP/pretrain_langauge_models/BERT/run_squad.py
浏览文件 @
e7a63d72
...
...
@@ -34,7 +34,7 @@ import paddle.fluid as fluid
from
reader.squad
import
DataProcessor
,
write_predictions
from
model.bert
import
BertConfig
,
BertModel
from
utils.args
import
ArgumentGroup
,
print_arguments
,
check_cuda
from
utils.args
import
ArgumentGroup
,
print_arguments
,
check_cuda
,
check_version
from
optimization
import
optimization
from
utils.init
import
init_pretraining_params
,
init_checkpoint
...
...
@@ -424,4 +424,5 @@ def train(args):
if
__name__
==
'__main__'
:
print_arguments
(
args
)
check_cuda
(
args
.
use_cuda
)
check_version
()
train
(
args
)
PaddleNLP/pretrain_langauge_models/BERT/train.py
浏览文件 @
e7a63d72
...
...
@@ -35,7 +35,7 @@ import paddle.fluid as fluid
from
reader.pretraining
import
DataReader
from
model.bert
import
BertModel
,
BertConfig
from
optimization
import
optimization
from
utils.args
import
ArgumentGroup
,
print_arguments
,
check_cuda
from
utils.args
import
ArgumentGroup
,
print_arguments
,
check_cuda
,
check_version
from
utils.init
import
init_checkpoint
,
init_pretraining_params
# yapf: disable
...
...
@@ -433,6 +433,7 @@ def train(args):
if
__name__
==
'__main__'
:
print_arguments
(
args
)
check_cuda
(
args
.
use_cuda
)
check_version
()
if
args
.
do_test
:
test
(
args
)
else
:
...
...
PaddleNLP/pretrain_langauge_models/BERT/utils/args.py
浏览文件 @
e7a63d72
...
...
@@ -59,3 +59,19 @@ def check_cuda(use_cuda, err = \
sys
.
exit
(
1
)
except
Exception
as
e
:
pass
def
check_version
():
"""
Log error and exit when the installed version of paddlepaddle is
not satisfied.
"""
err
=
"PaddlePaddle version 1.7.1 or higher is required, "
\
"or a suitable develop version is satisfied as well.
\n
"
\
"Please make sure the version is good with your code."
\
try
:
fluid
.
require_version
(
'1.7.1'
)
except
Exception
as
e
:
print
(
err
)
sys
.
exit
(
1
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录