Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleX
提交
392ada22
P
PaddleX
项目概览
PaddlePaddle
/
PaddleX
通知
138
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
43
列表
看板
标记
里程碑
合并请求
5
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleX
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
43
Issue
43
列表
看板
标记
里程碑
合并请求
5
合并请求
5
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
392ada22
编写于
5月 29, 2020
作者:
J
jiangjiajun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update for gui v1.0.1
上级
f001960b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
38 addition
and
36 deletion
+38
-36
paddlex/cv/models/utils/pretrain_weights.py
paddlex/cv/models/utils/pretrain_weights.py
+38
-36
未找到文件。
paddlex/cv/models/utils/pretrain_weights.py
浏览文件 @
392ada22
...
@@ -99,49 +99,51 @@ def get_pretrain_weights(flag, model_type, backbone, save_dir):
...
@@ -99,49 +99,51 @@ def get_pretrain_weights(flag, model_type, backbone, save_dir):
backbone
=
'DetResNet50'
backbone
=
'DetResNet50'
assert
backbone
in
image_pretrain
,
"There is not ImageNet pretrain weights for {}, you may try COCO."
.
format
(
assert
backbone
in
image_pretrain
,
"There is not ImageNet pretrain weights for {}, you may try COCO."
.
format
(
backbone
)
backbone
)
#
url = image_pretrain[backbone]
url
=
image_pretrain
[
backbone
]
#
fname = osp.split(url)[-1].split('.')[0]
fname
=
osp
.
split
(
url
)[
-
1
].
split
(
'.'
)[
0
]
#
paddlex.utils.download_and_decompress(url, path=new_save_dir)
paddlex
.
utils
.
download_and_decompress
(
url
,
path
=
new_save_dir
)
#
return osp.join(new_save_dir, fname)
return
osp
.
join
(
new_save_dir
,
fname
)
try
:
#
try:
hub
.
download
(
backbone
,
save_path
=
new_save_dir
)
#
hub.download(backbone, save_path=new_save_dir)
except
Exception
as
e
:
#
except Exception as e:
if
isinstance
(
e
,
hub
.
ResourceNotFoundError
):
#
if isinstance(e, hub.ResourceNotFoundError):
raise
Exception
(
"Resource for backbone {} not found"
.
format
(
#
raise Exception("Resource for backbone {} not found".format(
backbone
))
#
backbone))
elif
isinstance
(
e
,
hub
.
ServerConnectionError
):
#
elif isinstance(e, hub.ServerConnectionError):
raise
Exception
(
#
raise Exception(
"Cannot get reource for backbone {}, please check your internet connecgtion"
#
"Cannot get reource for backbone {}, please check your internet connecgtion"
.
format
(
backbone
))
#
.format(backbone))
else
:
#
else:
raise
Exception
(
#
raise Exception(
"Unexpected error, please make sure paddlehub >= 1.6.2"
)
#
"Unexpected error, please make sure paddlehub >= 1.6.2")
return
osp
.
join
(
new_save_dir
,
backbone
)
#
return osp.join(new_save_dir, backbone)
elif
flag
==
'COCO'
:
elif
flag
==
'COCO'
:
new_save_dir
=
save_dir
new_save_dir
=
save_dir
if
hasattr
(
paddlex
,
'pretrain_dir'
):
if
hasattr
(
paddlex
,
'pretrain_dir'
):
new_save_dir
=
paddlex
.
pretrain_dir
new_save_dir
=
paddlex
.
pretrain_dir
url
=
coco_pretrain
[
backbone
]
fname
=
osp
.
split
(
url
)[
-
1
].
split
(
'.'
)[
0
]
# paddlex.utils.download_and_decompress(url, path=new_save_dir)
# return osp.join(new_save_dir, fname)
assert
backbone
in
coco_pretrain
,
"There is not COCO pretrain weights for {}, you may try ImageNet."
.
format
(
assert
backbone
in
coco_pretrain
,
"There is not COCO pretrain weights for {}, you may try ImageNet."
.
format
(
backbone
)
backbone
)
try
:
hub
.
download
(
backbone
,
save_path
=
new_save_dir
)
url
=
coco_pretrain
[
backbone
]
except
Exception
as
e
:
fname
=
osp
.
split
(
url
)[
-
1
].
split
(
'.'
)[
0
]
if
isinstance
(
hub
.
ResourceNotFoundError
):
paddlex
.
utils
.
download_and_decompress
(
url
,
path
=
new_save_dir
)
raise
Exception
(
"Resource for backbone {} not found"
.
format
(
return
osp
.
join
(
new_save_dir
,
fname
)
backbone
))
elif
isinstance
(
hub
.
ServerConnectionError
):
# try:
raise
Exception
(
# hub.download(backbone, save_path=new_save_dir)
"Cannot get reource for backbone {}, please check your internet connecgtion"
# except Exception as e:
.
format
(
backbone
))
# if isinstance(hub.ResourceNotFoundError):
else
:
# raise Exception("Resource for backbone {} not found".format(
raise
Exception
(
# backbone))
"Unexpected error, please make sure paddlehub >= 1.6.2"
)
# elif isinstance(hub.ServerConnectionError):
return
osp
.
join
(
new_save_dir
,
backbone
)
# raise Exception(
# "Cannot get reource for backbone {}, please check your internet connecgtion"
# .format(backbone))
# else:
# raise Exception(
# "Unexpected error, please make sure paddlehub >= 1.6.2")
# return osp.join(new_save_dir, backbone)
else
:
else
:
raise
Exception
(
raise
Exception
(
"pretrain_weights need to be defined as directory path or `IMAGENET` or 'COCO' (download pretrain weights automatically)."
"pretrain_weights need to be defined as directory path or `IMAGENET` or 'COCO' (download pretrain weights automatically)."
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录