Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
38841c3b
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看板
未验证
提交
38841c3b
编写于
9月 16, 2019
作者:
K
Kaipeng Deng
提交者:
GitHub
9月 16, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refine auto download logs (#3330)
* refine auto download logs
上级
6b91f9c1
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
10 addition
and
5 deletion
+10
-5
PaddleCV/PaddleDetection/ppdet/utils/download.py
PaddleCV/PaddleDetection/ppdet/utils/download.py
+10
-5
未找到文件。
PaddleCV/PaddleDetection/ppdet/utils/download.py
浏览文件 @
38841c3b
...
...
@@ -81,7 +81,7 @@ def get_dataset_path(path, annotation, image_dir):
if
_dataset_exists
(
path
,
annotation
,
image_dir
):
return
path
logger
.
info
(
"Dataset {}
not exists
, try searching {} or "
logger
.
info
(
"Dataset {}
is not valid for reason above
, try searching {} or "
"downloading dataset..."
.
format
(
osp
.
realpath
(
path
),
DATASET_HOME
))
...
...
@@ -125,7 +125,9 @@ def get_dataset_path(path, annotation, image_dir):
return
data_dir
# not match any dataset in DATASETS
raise
ValueError
(
"{} not exists or unknow dataset type"
.
format
(
path
))
raise
ValueError
(
"Dataset {} is not valid and cannot parse dataset type "
"'{}' for automaticly downloading, which only supports "
"'voc' and 'coco' currently"
.
format
(
path
,
osp
.
split
(
path
)[
-
1
]))
def
get_path
(
url
,
root_dir
,
md5sum
=
None
):
...
...
@@ -171,20 +173,23 @@ def _dataset_exists(path, annotation, image_dir):
Check if user define dataset exists
"""
if
not
osp
.
exists
(
path
):
logger
.
info
(
"Config dataset_dir {} not exits"
.
format
(
path
))
logger
.
info
(
"Config dataset_dir {} is not exits, "
"dataset config is not valid"
.
format
(
path
))
return
False
if
annotation
:
annotation_path
=
osp
.
join
(
path
,
annotation
)
if
not
osp
.
isfile
(
annotation_path
):
logger
.
info
(
"Config annotation {} is not a "
"file"
.
format
(
annotation_path
))
"file, dataset config is not "
"valid"
.
format
(
annotation_path
))
return
False
if
image_dir
:
image_path
=
osp
.
join
(
path
,
image_dir
)
if
not
osp
.
isdir
(
image_path
):
logger
.
info
(
"Config image_dir {} is not a "
"directory"
.
format
(
image_path
))
"directory, dataset config is not "
"valid"
.
format
(
image_path
))
return
False
return
True
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录