Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
PaddleDetection
提交
73bbc913
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看板
未验证
提交
73bbc913
编写于
8月 03, 2021
作者:
K
Kaipeng Deng
提交者:
GitHub
8月 03, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
unify dist download (#3867)
上级
b63fe624
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
65 addition
and
42 deletion
+65
-42
ppdet/utils/checkpoint.py
ppdet/utils/checkpoint.py
+3
-38
ppdet/utils/download.py
ppdet/utils/download.py
+62
-4
未找到文件。
ppdet/utils/checkpoint.py
浏览文件 @
73bbc913
...
...
@@ -55,41 +55,6 @@ def _get_unique_endpoints(trainer_endpoints):
return
unique_endpoints
def
get_weights_path_dist
(
path
):
env
=
os
.
environ
if
'PADDLE_TRAINERS_NUM'
in
env
and
'PADDLE_TRAINER_ID'
in
env
:
trainer_id
=
int
(
env
[
'PADDLE_TRAINER_ID'
])
num_trainers
=
int
(
env
[
'PADDLE_TRAINERS_NUM'
])
if
num_trainers
<=
1
:
path
=
get_weights_path
(
path
)
else
:
from
ppdet.utils.download
import
map_path
,
WEIGHTS_HOME
weight_path
=
map_path
(
path
,
WEIGHTS_HOME
)
lock_path
=
weight_path
+
'.lock'
if
not
os
.
path
.
exists
(
weight_path
):
from
paddle.distributed
import
ParallelEnv
unique_endpoints
=
_get_unique_endpoints
(
ParallelEnv
()
.
trainer_endpoints
[:])
try
:
os
.
makedirs
(
os
.
path
.
dirname
(
weight_path
))
except
OSError
as
e
:
if
e
.
errno
!=
errno
.
EEXIST
:
raise
with
open
(
lock_path
,
'w'
):
# touch
os
.
utime
(
lock_path
,
None
)
if
ParallelEnv
().
current_endpoint
in
unique_endpoints
:
get_weights_path
(
path
)
os
.
remove
(
lock_path
)
else
:
while
os
.
path
.
exists
(
lock_path
):
time
.
sleep
(
1
)
path
=
weight_path
else
:
path
=
get_weights_path
(
path
)
return
path
def
_strip_postfix
(
path
):
path
,
ext
=
os
.
path
.
splitext
(
path
)
assert
ext
in
[
''
,
'.pdparams'
,
'.pdopt'
,
'.pdmodel'
],
\
...
...
@@ -99,7 +64,7 @@ def _strip_postfix(path):
def
load_weight
(
model
,
weight
,
optimizer
=
None
):
if
is_url
(
weight
):
weight
=
get_weights_path
_dist
(
weight
)
weight
=
get_weights_path
(
weight
)
path
=
_strip_postfix
(
weight
)
pdparam_path
=
path
+
'.pdparams'
...
...
@@ -205,7 +170,7 @@ def match_state_dict(model_state_dict, weight_state_dict):
def
load_pretrain_weight
(
model
,
pretrain_weight
):
if
is_url
(
pretrain_weight
):
pretrain_weight
=
get_weights_path
_dist
(
pretrain_weight
)
pretrain_weight
=
get_weights_path
(
pretrain_weight
)
path
=
_strip_postfix
(
pretrain_weight
)
if
not
(
os
.
path
.
isdir
(
path
)
or
os
.
path
.
isfile
(
path
)
or
...
...
@@ -251,4 +216,4 @@ def save_model(model, optimizer, save_dir, save_name, last_epoch):
state_dict
=
optimizer
.
state_dict
()
state_dict
[
'last_epoch'
]
=
last_epoch
paddle
.
save
(
state_dict
,
save_path
+
".pdopt"
)
logger
.
info
(
"Save checkpoint: {}"
.
format
(
save_dir
))
\ No newline at end of file
logger
.
info
(
"Save checkpoint: {}"
.
format
(
save_dir
))
ppdet/utils/download.py
浏览文件 @
73bbc913
...
...
@@ -20,6 +20,7 @@ import os
import
os.path
as
osp
import
sys
import
yaml
import
time
import
shutil
import
requests
import
tqdm
...
...
@@ -29,6 +30,7 @@ import binascii
import
tarfile
import
zipfile
from
paddle.utils.download
import
_get_unique_endpoints
from
ppdet.core.workspace
import
BASE_KEY
from
.logger
import
setup_logger
from
.voc_utils
import
create_list
...
...
@@ -144,8 +146,8 @@ def get_config_path(url):
cfg_url
=
parse_url
(
cfg_url
)
# 3. download and decompress
cfg_fullname
=
_download
(
cfg_url
,
osp
.
dirname
(
CONFIGS_HOME
))
_decompress
(
cfg_fullname
)
cfg_fullname
=
_download
_dist
(
cfg_url
,
osp
.
dirname
(
CONFIGS_HOME
))
_decompress
_dist
(
cfg_fullname
)
# 4. check config file existing
if
os
.
path
.
isfile
(
path
):
...
...
@@ -281,12 +283,12 @@ def get_path(url, root_dir, md5sum=None, check_exist=True):
else
:
os
.
remove
(
fullpath
)
fullname
=
_download
(
url
,
root_dir
,
md5sum
)
fullname
=
_download
_dist
(
url
,
root_dir
,
md5sum
)
# new weights format which postfix is 'pdparams' not
# need to decompress
if
osp
.
splitext
(
fullname
)[
-
1
]
not
in
[
'.pdparams'
,
'.yml'
]:
_decompress
(
fullname
)
_decompress
_dist
(
fullname
)
return
fullpath
,
False
...
...
@@ -381,6 +383,38 @@ def _download(url, path, md5sum=None):
return
fullname
def
_download_dist
(
url
,
path
,
md5sum
=
None
):
env
=
os
.
environ
if
'PADDLE_TRAINERS_NUM'
in
env
and
'PADDLE_TRAINER_ID'
in
env
:
trainer_id
=
int
(
env
[
'PADDLE_TRAINER_ID'
])
num_trainers
=
int
(
env
[
'PADDLE_TRAINERS_NUM'
])
if
num_trainers
<=
1
:
return
_download
(
url
,
path
,
md5sum
)
else
:
fname
=
osp
.
split
(
url
)[
-
1
]
fullname
=
osp
.
join
(
path
,
fname
)
lock_path
=
fullname
+
'.download.lock'
if
not
osp
.
isdir
(
path
):
os
.
makedirs
(
path
)
if
not
osp
.
exists
(
fullname
):
from
paddle.distributed
import
ParallelEnv
unique_endpoints
=
_get_unique_endpoints
(
ParallelEnv
()
.
trainer_endpoints
[:])
with
open
(
lock_path
,
'w'
):
# touch
os
.
utime
(
lock_path
,
None
)
if
ParallelEnv
().
current_endpoint
in
unique_endpoints
:
_download
(
url
,
path
,
md5sum
)
os
.
remove
(
lock_path
)
else
:
while
os
.
path
.
exists
(
lock_path
):
time
.
sleep
(
1
)
return
fullname
else
:
return
_download
(
url
,
path
,
md5sum
)
def
_check_exist_file_md5
(
filename
,
md5sum
,
url
):
# if md5sum is None, and file to check is weights file,
# read md5um from url and check, else check md5sum directly
...
...
@@ -458,6 +492,30 @@ def _decompress(fname):
os
.
remove
(
fname
)
def
_decompress_dist
(
fname
):
env
=
os
.
environ
if
'PADDLE_TRAINERS_NUM'
in
env
and
'PADDLE_TRAINER_ID'
in
env
:
trainer_id
=
int
(
env
[
'PADDLE_TRAINER_ID'
])
num_trainers
=
int
(
env
[
'PADDLE_TRAINERS_NUM'
])
if
num_trainers
<=
1
:
_decompress
(
fname
)
else
:
lock_path
=
fname
+
'.decompress.lock'
from
paddle.distributed
import
ParallelEnv
unique_endpoints
=
_get_unique_endpoints
(
ParallelEnv
()
.
trainer_endpoints
[:])
with
open
(
lock_path
,
'w'
):
# touch
os
.
utime
(
lock_path
,
None
)
if
ParallelEnv
().
current_endpoint
in
unique_endpoints
:
_decompress
(
fname
)
os
.
remove
(
lock_path
)
else
:
while
os
.
path
.
exists
(
lock_path
):
time
.
sleep
(
1
)
else
:
_decompress
(
fname
)
def
_move_and_merge_tree
(
src
,
dst
):
"""
Move src directory to dst, if dst is already exists,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录