Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
PaddleDetection
提交
06a71983
P
PaddleDetection
项目概览
s920243400
/
PaddleDetection
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleDetection
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
06a71983
编写于
9月 07, 2022
作者:
W
wangguanzhong
提交者:
GitHub
9月 07, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update en doc and version check (#6876)
上级
9f5d141b
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
15 addition
and
4 deletion
+15
-4
README.md
README.md
+1
-1
docs/tutorials/INSTALL.md
docs/tutorials/INSTALL.md
+1
-1
docs/tutorials/INSTALL_cn.md
docs/tutorials/INSTALL_cn.md
+1
-1
ppdet/utils/check.py
ppdet/utils/check.py
+12
-1
未找到文件。
README.md
浏览文件 @
06a71983
README_cn.md
\ No newline at end of file
README_en.md
\ No newline at end of file
docs/tutorials/INSTALL.md
浏览文件 @
06a71983
...
...
@@ -22,7 +22,7 @@ Dependency of PaddleDetection and PaddlePaddle:
| PaddleDetection version | PaddlePaddle version | tips |
| :----------------: | :---------------: | :-------: |
| develop |
>= 2.2.2
| Dygraph mode is set as default |
| develop |
develop
| Dygraph mode is set as default |
| release/2.5 | >= 2.2.2 | Dygraph mode is set as default |
| release/2.4 | >= 2.2.2 | Dygraph mode is set as default |
| release/2.3 | >= 2.2.0rc | Dygraph mode is set as default |
...
...
docs/tutorials/INSTALL_cn.md
浏览文件 @
06a71983
...
...
@@ -18,7 +18,7 @@ PaddleDetection 依赖 PaddlePaddle 版本关系:
| PaddleDetection版本 | PaddlePaddle版本 | 备注 |
| :------------------: | :---------------: | :-------: |
| develop |
>= 2.2.2
| 默认使用动态图模式 |
| develop |
develop
| 默认使用动态图模式 |
| release/2.5 | >= 2.2.2 | 默认使用动态图模式 |
| release/2.4 | >= 2.2.2 | 默认使用动态图模式 |
| release/2.3 | >= 2.2.0rc | 默认使用动态图模式 |
...
...
ppdet/utils/check.py
浏览文件 @
06a71983
...
...
@@ -87,7 +87,7 @@ def check_gpu(use_gpu):
pass
def
check_version
(
version
=
'2.
0
'
):
def
check_version
(
version
=
'2.
2
'
):
"""
Log error and exit when the installed version of paddlepaddle is
not satisfied.
...
...
@@ -100,8 +100,19 @@ def check_version(version='2.0'):
paddle_version
.
major
,
paddle_version
.
minor
,
paddle_version
.
patch
,
paddle_version
.
rc
]
# Paddledet develop version is only used on Paddle develop
if
version_installed
==
[
'0'
,
'0'
,
'0'
,
'0'
]
and
version
!=
'develop'
:
raise
Exception
(
"PaddlePaddle version {} or higher is required, and develop version is only used for PaddleDetection develop version!"
.
format
(
version
))
if
version_installed
==
[
'0'
,
'0'
,
'0'
,
'0'
]:
return
if
version
==
'develop'
:
raise
Exception
(
"PaddlePaddle develop version is required!"
)
version_split
=
version
.
split
(
'.'
)
length
=
min
(
len
(
version_installed
),
len
(
version_split
))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录