Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
69d21d88
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
69d21d88
编写于
10月 21, 2021
作者:
Q
Qi Li
提交者:
GitHub
10月 21, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[NPU] add npu support for yolov3, test=develop (#4344)
上级
1755a2b2
变更
11
隐藏空白更改
内联
并排
Showing
11 changed file
with
147 addition
and
16 deletion
+147
-16
.gitignore
.gitignore
+3
-0
ppdet/utils/check.py
ppdet/utils/check.py
+20
-1
static/ppdet/modeling/anchor_heads/yolo_head.py
static/ppdet/modeling/anchor_heads/yolo_head.py
+14
-2
static/ppdet/utils/check.py
static/ppdet/utils/check.py
+20
-0
static/ppdet/utils/dist_utils.py
static/ppdet/utils/dist_utils.py
+17
-1
static/tools/eval.py
static/tools/eval.py
+11
-2
static/tools/infer.py
static/tools/infer.py
+11
-2
static/tools/train.py
static/tools/train.py
+16
-3
tools/eval.py
tools/eval.py
+12
-2
tools/infer.py
tools/infer.py
+12
-2
tools/train.py
tools/train.py
+11
-1
未找到文件。
.gitignore
浏览文件 @
69d21d88
...
@@ -79,3 +79,6 @@ dataset/wider_face/WIDER_val
...
@@ -79,3 +79,6 @@ dataset/wider_face/WIDER_val
dataset/wider_face/wider_face_split
dataset/wider_face/wider_face_split
ppdet/version.py
ppdet/version.py
# NPU meta folder
kernel_meta/
ppdet/utils/check.py
浏览文件 @
69d21d88
...
@@ -25,7 +25,26 @@ import paddle.version as fluid_version
...
@@ -25,7 +25,26 @@ import paddle.version as fluid_version
from
.logger
import
setup_logger
from
.logger
import
setup_logger
logger
=
setup_logger
(
__name__
)
logger
=
setup_logger
(
__name__
)
__all__
=
[
'check_gpu'
,
'check_version'
,
'check_config'
]
__all__
=
[
'check_gpu'
,
'check_npu'
,
'check_version'
,
'check_config'
]
def
check_npu
(
use_npu
):
"""
Log error and exit when set use_npu=true in paddlepaddle
cpu/gpu/xpu version.
"""
err
=
"Config use_npu cannot be set as true while you are "
\
"using paddlepaddle cpu/gpu/xpu version !
\n
Please try:
\n
"
\
"
\t
1. Install paddlepaddle-npu to run model on NPU
\n
"
\
"
\t
2. Set use_npu as false in config file to run "
\
"model on CPU/GPU/XPU"
try
:
if
use_npu
and
not
paddle
.
is_compiled_with_npu
():
logger
.
error
(
err
)
sys
.
exit
(
1
)
except
Exception
as
e
:
pass
def
check_gpu
(
use_gpu
):
def
check_gpu
(
use_gpu
):
...
...
static/ppdet/modeling/anchor_heads/yolo_head.py
浏览文件 @
69d21d88
...
@@ -303,8 +303,14 @@ class YOLOv3Head(object):
...
@@ -303,8 +303,14 @@ class YOLOv3Head(object):
return
route
,
tip
return
route
,
tip
def
_upsample
(
self
,
input
,
scale
=
2
,
name
=
None
):
def
_upsample
(
self
,
input
,
scale
=
2
,
name
=
None
):
align_corners
=
True
if
fluid
.
core
.
is_compiled_with_npu
():
align_corners
=
False
out
=
fluid
.
layers
.
resize_nearest
(
out
=
fluid
.
layers
.
resize_nearest
(
input
=
input
,
scale
=
float
(
scale
),
name
=
name
)
input
=
input
,
scale
=
float
(
scale
),
name
=
name
,
align_corners
=
align_corners
)
return
out
return
out
def
_parse_anchors
(
self
,
anchors
):
def
_parse_anchors
(
self
,
anchors
):
...
@@ -520,8 +526,14 @@ class YOLOv4Head(YOLOv3Head):
...
@@ -520,8 +526,14 @@ class YOLOv4Head(YOLOv3Head):
self
.
spp_stage
=
spp_stage
self
.
spp_stage
=
spp_stage
def
_upsample
(
self
,
input
,
scale
=
2
,
name
=
None
):
def
_upsample
(
self
,
input
,
scale
=
2
,
name
=
None
):
align_corners
=
True
if
fluid
.
core
.
is_compiled_with_npu
():
align_corners
=
False
out
=
fluid
.
layers
.
resize_nearest
(
out
=
fluid
.
layers
.
resize_nearest
(
input
=
input
,
scale
=
float
(
scale
),
name
=
name
)
input
=
input
,
scale
=
float
(
scale
),
name
=
name
,
align_corners
=
align_corners
)
return
out
return
out
def
max_pool
(
self
,
input
,
size
):
def
max_pool
(
self
,
input
,
size
):
...
...
static/ppdet/utils/check.py
浏览文件 @
69d21d88
...
@@ -29,6 +29,7 @@ logger = logging.getLogger(__name__)
...
@@ -29,6 +29,7 @@ logger = logging.getLogger(__name__)
__all__
=
[
__all__
=
[
'check_gpu'
,
'check_gpu'
,
'check_xpu'
,
'check_xpu'
,
'check_npu'
,
'check_version'
,
'check_version'
,
'check_config'
,
'check_config'
,
'check_py_func'
,
'check_py_func'
,
...
@@ -54,6 +55,25 @@ def check_xpu(use_xpu):
...
@@ -54,6 +55,25 @@ def check_xpu(use_xpu):
pass
pass
def
check_npu
(
use_npu
):
"""
Log error and exit when set use_npu=true in paddlepaddle
cpu/gpu/xpu version.
"""
err
=
"Config use_npu cannot be set as true while you are "
\
"using paddlepaddle cpu/gpu/xpu version !
\n
Please try:
\n
"
\
"
\t
1. Install paddlepaddle-npu to run model on NPU
\n
"
\
"
\t
2. Set use_npu as false in config file to run "
\
"model on CPU/GPU/XPU"
try
:
if
use_npu
and
not
fluid
.
is_compiled_with_npu
():
logger
.
error
(
err
)
sys
.
exit
(
1
)
except
Exception
as
e
:
pass
def
check_gpu
(
use_gpu
):
def
check_gpu
(
use_gpu
):
"""
"""
Log error and exit when set use_gpu=true in paddlepaddle
Log error and exit when set use_gpu=true in paddlepaddle
...
...
static/ppdet/utils/dist_utils.py
浏览文件 @
69d21d88
...
@@ -31,6 +31,19 @@ def nccl2_prepare(trainer_id, startup_prog, main_prog):
...
@@ -31,6 +31,19 @@ def nccl2_prepare(trainer_id, startup_prog, main_prog):
program
=
main_prog
)
program
=
main_prog
)
def
collective_prepare
(
trainer_id
,
startup_prog
,
main_prog
):
config
=
fluid
.
DistributeTranspilerConfig
()
config
.
mode
=
"collective"
config
.
collective_mode
=
"grad_allreduce"
t
=
fluid
.
DistributeTranspiler
(
config
=
config
)
t
.
transpile
(
trainer_id
,
trainers
=
os
.
environ
.
get
(
'PADDLE_TRAINER_ENDPOINTS'
),
current_endpoint
=
os
.
environ
.
get
(
'PADDLE_CURRENT_ENDPOINT'
),
startup_program
=
startup_prog
,
program
=
main_prog
)
def
prepare_for_multi_process
(
exe
,
build_strategy
,
startup_prog
,
main_prog
):
def
prepare_for_multi_process
(
exe
,
build_strategy
,
startup_prog
,
main_prog
):
trainer_id
=
int
(
os
.
environ
.
get
(
'PADDLE_TRAINER_ID'
,
0
))
trainer_id
=
int
(
os
.
environ
.
get
(
'PADDLE_TRAINER_ID'
,
0
))
num_trainers
=
int
(
os
.
environ
.
get
(
'PADDLE_TRAINERS_NUM'
,
1
))
num_trainers
=
int
(
os
.
environ
.
get
(
'PADDLE_TRAINERS_NUM'
,
1
))
...
@@ -38,4 +51,7 @@ def prepare_for_multi_process(exe, build_strategy, startup_prog, main_prog):
...
@@ -38,4 +51,7 @@ def prepare_for_multi_process(exe, build_strategy, startup_prog, main_prog):
return
return
build_strategy
.
num_trainers
=
num_trainers
build_strategy
.
num_trainers
=
num_trainers
build_strategy
.
trainer_id
=
trainer_id
build_strategy
.
trainer_id
=
trainer_id
nccl2_prepare
(
trainer_id
,
startup_prog
,
main_prog
)
if
fluid
.
core
.
is_compiled_with_npu
():
collective_prepare
(
trainer_id
,
startup_prog
,
main_prog
)
else
:
nccl2_prepare
(
trainer_id
,
startup_prog
,
main_prog
)
static/tools/eval.py
浏览文件 @
69d21d88
...
@@ -34,7 +34,7 @@ logger = logging.getLogger(__name__)
...
@@ -34,7 +34,7 @@ logger = logging.getLogger(__name__)
try
:
try
:
from
ppdet.utils.eval_utils
import
parse_fetches
,
eval_run
,
eval_results
,
json_eval_results
from
ppdet.utils.eval_utils
import
parse_fetches
,
eval_run
,
eval_results
,
json_eval_results
import
ppdet.utils.checkpoint
as
checkpoint
import
ppdet.utils.checkpoint
as
checkpoint
from
ppdet.utils.check
import
check_gpu
,
check_xpu
,
check_version
,
check_config
,
enable_static_mode
from
ppdet.utils.check
import
check_gpu
,
check_xpu
,
check_
npu
,
check_
version
,
check_config
,
enable_static_mode
from
ppdet.data.reader
import
create_reader
from
ppdet.data.reader
import
create_reader
...
@@ -63,6 +63,10 @@ def main():
...
@@ -63,6 +63,10 @@ def main():
check_config
(
cfg
)
check_config
(
cfg
)
# check if set use_gpu=True in paddlepaddle cpu version
# check if set use_gpu=True in paddlepaddle cpu version
check_gpu
(
cfg
.
use_gpu
)
check_gpu
(
cfg
.
use_gpu
)
# disable npu in config by default and check use_npu
if
'use_npu'
not
in
cfg
:
cfg
.
use_npu
=
False
check_npu
(
cfg
.
use_npu
)
use_xpu
=
False
use_xpu
=
False
if
hasattr
(
cfg
,
'use_xpu'
):
if
hasattr
(
cfg
,
'use_xpu'
):
check_xpu
(
cfg
.
use_xpu
)
check_xpu
(
cfg
.
use_xpu
)
...
@@ -73,6 +77,9 @@ def main():
...
@@ -73,6 +77,9 @@ def main():
assert
not
(
use_xpu
and
cfg
.
use_gpu
),
\
assert
not
(
use_xpu
and
cfg
.
use_gpu
),
\
'Can not run on both XPU and GPU'
'Can not run on both XPU and GPU'
assert
not
(
cfg
.
use_npu
and
cfg
.
use_gpu
),
\
'Can not run on both NPU and GPU'
main_arch
=
cfg
.
architecture
main_arch
=
cfg
.
architecture
multi_scale_test
=
getattr
(
cfg
,
'MultiScaleTEST'
,
None
)
multi_scale_test
=
getattr
(
cfg
,
'MultiScaleTEST'
,
None
)
...
@@ -80,6 +87,8 @@ def main():
...
@@ -80,6 +87,8 @@ def main():
# define executor
# define executor
if
cfg
.
use_gpu
:
if
cfg
.
use_gpu
:
place
=
fluid
.
CUDAPlace
(
0
)
place
=
fluid
.
CUDAPlace
(
0
)
elif
cfg
.
use_npu
:
place
=
fluid
.
NPUPlace
(
0
)
elif
use_xpu
:
elif
use_xpu
:
place
=
fluid
.
XPUPlace
(
0
)
place
=
fluid
.
XPUPlace
(
0
)
else
:
else
:
...
@@ -117,7 +126,7 @@ def main():
...
@@ -117,7 +126,7 @@ def main():
return
return
compile_program
=
fluid
.
CompiledProgram
(
eval_prog
).
with_data_parallel
()
compile_program
=
fluid
.
CompiledProgram
(
eval_prog
).
with_data_parallel
()
if
use_xpu
:
if
use_xpu
or
cfg
.
use_npu
:
compile_program
=
eval_prog
compile_program
=
eval_prog
assert
cfg
.
metric
!=
'OID'
,
"eval process of OID dataset
\
assert
cfg
.
metric
!=
'OID'
,
"eval process of OID dataset
\
...
...
static/tools/infer.py
浏览文件 @
69d21d88
...
@@ -41,7 +41,7 @@ try:
...
@@ -41,7 +41,7 @@ try:
from
ppdet.utils.eval_utils
import
parse_fetches
from
ppdet.utils.eval_utils
import
parse_fetches
from
ppdet.utils.cli
import
ArgsParser
from
ppdet.utils.cli
import
ArgsParser
from
ppdet.utils.check
import
check_gpu
,
check_version
,
check_config
,
enable_static_mode
from
ppdet.utils.check
import
check_gpu
,
check_
npu
,
check_
version
,
check_config
,
enable_static_mode
from
ppdet.utils.visualizer
import
visualize_results
from
ppdet.utils.visualizer
import
visualize_results
import
ppdet.utils.checkpoint
as
checkpoint
import
ppdet.utils.checkpoint
as
checkpoint
...
@@ -109,6 +109,10 @@ def main():
...
@@ -109,6 +109,10 @@ def main():
check_config
(
cfg
)
check_config
(
cfg
)
# check if set use_gpu=True in paddlepaddle cpu version
# check if set use_gpu=True in paddlepaddle cpu version
check_gpu
(
cfg
.
use_gpu
)
check_gpu
(
cfg
.
use_gpu
)
# disable npu in config by default and check use_npu
if
'use_npu'
not
in
cfg
:
cfg
.
use_npu
=
False
check_npu
(
cfg
.
use_npu
)
# check if paddlepaddle version is satisfied
# check if paddlepaddle version is satisfied
check_version
()
check_version
()
...
@@ -119,7 +123,12 @@ def main():
...
@@ -119,7 +123,12 @@ def main():
test_images
=
get_test_images
(
FLAGS
.
infer_dir
,
FLAGS
.
infer_img
)
test_images
=
get_test_images
(
FLAGS
.
infer_dir
,
FLAGS
.
infer_img
)
dataset
.
set_images
(
test_images
)
dataset
.
set_images
(
test_images
)
place
=
fluid
.
CUDAPlace
(
0
)
if
cfg
.
use_gpu
else
fluid
.
CPUPlace
()
if
cfg
.
use_gpu
:
place
=
fluid
.
CUDAPlace
(
0
)
elif
cfg
.
use_npu
:
place
=
fluid
.
NPUPlace
(
0
)
else
:
place
=
fluid
.
CPUPlace
()
exe
=
fluid
.
Executor
(
place
)
exe
=
fluid
.
Executor
(
place
)
model
=
create
(
main_arch
)
model
=
create
(
main_arch
)
...
...
static/tools/train.py
浏览文件 @
69d21d88
...
@@ -50,7 +50,7 @@ try:
...
@@ -50,7 +50,7 @@ try:
from
ppdet.utils.eval_utils
import
parse_fetches
,
eval_run
,
eval_results
from
ppdet.utils.eval_utils
import
parse_fetches
,
eval_run
,
eval_results
from
ppdet.utils.stats
import
TrainingStats
from
ppdet.utils.stats
import
TrainingStats
from
ppdet.utils.cli
import
ArgsParser
from
ppdet.utils.cli
import
ArgsParser
from
ppdet.utils.check
import
check_gpu
,
check_xpu
,
check_version
,
check_config
,
enable_static_mode
from
ppdet.utils.check
import
check_gpu
,
check_xpu
,
check_
npu
,
check_
version
,
check_config
,
enable_static_mode
import
ppdet.utils.checkpoint
as
checkpoint
import
ppdet.utils.checkpoint
as
checkpoint
except
ImportError
as
e
:
except
ImportError
as
e
:
if
sys
.
argv
[
0
].
find
(
'static'
)
>=
0
:
if
sys
.
argv
[
0
].
find
(
'static'
)
>=
0
:
...
@@ -87,6 +87,10 @@ def main():
...
@@ -87,6 +87,10 @@ def main():
check_config
(
cfg
)
check_config
(
cfg
)
# check if set use_gpu=True in paddlepaddle cpu version
# check if set use_gpu=True in paddlepaddle cpu version
check_gpu
(
cfg
.
use_gpu
)
check_gpu
(
cfg
.
use_gpu
)
# disable npu in config by default and check use_npu
if
'use_npu'
not
in
cfg
:
cfg
.
use_npu
=
False
check_npu
(
cfg
.
use_npu
)
use_xpu
=
False
use_xpu
=
False
if
hasattr
(
cfg
,
'use_xpu'
):
if
hasattr
(
cfg
,
'use_xpu'
):
check_xpu
(
cfg
.
use_xpu
)
check_xpu
(
cfg
.
use_xpu
)
...
@@ -97,6 +101,9 @@ def main():
...
@@ -97,6 +101,9 @@ def main():
assert
not
(
use_xpu
and
cfg
.
use_gpu
),
\
assert
not
(
use_xpu
and
cfg
.
use_gpu
),
\
'Can not run on both XPU and GPU'
'Can not run on both XPU and GPU'
assert
not
(
cfg
.
use_npu
and
cfg
.
use_gpu
),
\
'Can not run on both NPU and GPU'
save_only
=
getattr
(
cfg
,
'save_prediction_only'
,
False
)
save_only
=
getattr
(
cfg
,
'save_prediction_only'
,
False
)
if
save_only
:
if
save_only
:
raise
NotImplementedError
(
'The config file only support prediction,'
raise
NotImplementedError
(
'The config file only support prediction,'
...
@@ -105,6 +112,8 @@ def main():
...
@@ -105,6 +112,8 @@ def main():
if
cfg
.
use_gpu
:
if
cfg
.
use_gpu
:
devices_num
=
fluid
.
core
.
get_cuda_device_count
()
devices_num
=
fluid
.
core
.
get_cuda_device_count
()
if
cfg
.
use_npu
:
devices_num
=
fluid
.
core
.
get_npu_device_count
()
elif
use_xpu
:
elif
use_xpu
:
# ToDo(qingshu): XPU only support single card now
# ToDo(qingshu): XPU only support single card now
devices_num
=
1
devices_num
=
1
...
@@ -113,6 +122,8 @@ def main():
...
@@ -113,6 +122,8 @@ def main():
if
cfg
.
use_gpu
and
'FLAGS_selected_gpus'
in
env
:
if
cfg
.
use_gpu
and
'FLAGS_selected_gpus'
in
env
:
device_id
=
int
(
env
[
'FLAGS_selected_gpus'
])
device_id
=
int
(
env
[
'FLAGS_selected_gpus'
])
elif
cfg
.
use_npu
and
'FLAGS_selected_npus'
in
env
:
device_id
=
int
(
env
[
'FLAGS_selected_npus'
])
elif
use_xpu
and
'FLAGS_selected_xpus'
in
env
:
elif
use_xpu
and
'FLAGS_selected_xpus'
in
env
:
device_id
=
int
(
env
[
'FLAGS_selected_xpus'
])
device_id
=
int
(
env
[
'FLAGS_selected_xpus'
])
else
:
else
:
...
@@ -120,6 +131,8 @@ def main():
...
@@ -120,6 +131,8 @@ def main():
if
cfg
.
use_gpu
:
if
cfg
.
use_gpu
:
place
=
fluid
.
CUDAPlace
(
device_id
)
place
=
fluid
.
CUDAPlace
(
device_id
)
elif
cfg
.
use_npu
:
place
=
fluid
.
NPUPlace
(
device_id
)
elif
use_xpu
:
elif
use_xpu
:
place
=
fluid
.
XPUPlace
(
device_id
)
place
=
fluid
.
XPUPlace
(
device_id
)
else
:
else
:
...
@@ -216,12 +229,12 @@ def main():
...
@@ -216,12 +229,12 @@ def main():
loss_name
=
loss
.
name
,
loss_name
=
loss
.
name
,
build_strategy
=
build_strategy
,
build_strategy
=
build_strategy
,
exec_strategy
=
exec_strategy
)
exec_strategy
=
exec_strategy
)
if
use_xpu
:
if
use_xpu
or
cfg
.
use_npu
:
compiled_train_prog
=
train_prog
compiled_train_prog
=
train_prog
if
FLAGS
.
eval
:
if
FLAGS
.
eval
:
compiled_eval_prog
=
fluid
.
CompiledProgram
(
eval_prog
)
compiled_eval_prog
=
fluid
.
CompiledProgram
(
eval_prog
)
if
use_xpu
:
if
use_xpu
or
cfg
.
use_npu
:
compiled_eval_prog
=
eval_prog
compiled_eval_prog
=
eval_prog
fuse_bn
=
getattr
(
model
.
backbone
,
'norm_type'
,
None
)
==
'affine_channel'
fuse_bn
=
getattr
(
model
.
backbone
,
'norm_type'
,
None
)
==
'affine_channel'
...
...
tools/eval.py
浏览文件 @
69d21d88
...
@@ -30,7 +30,7 @@ warnings.filterwarnings('ignore')
...
@@ -30,7 +30,7 @@ warnings.filterwarnings('ignore')
import
paddle
import
paddle
from
ppdet.core.workspace
import
load_config
,
merge_config
from
ppdet.core.workspace
import
load_config
,
merge_config
from
ppdet.utils.check
import
check_gpu
,
check_version
,
check_config
from
ppdet.utils.check
import
check_gpu
,
check_
npu
,
check_
version
,
check_config
from
ppdet.utils.cli
import
ArgsParser
from
ppdet.utils.cli
import
ArgsParser
from
ppdet.engine
import
Trainer
,
init_parallel_env
from
ppdet.engine
import
Trainer
,
init_parallel_env
from
ppdet.metrics.coco_utils
import
json_eval_results
from
ppdet.metrics.coco_utils
import
json_eval_results
...
@@ -116,7 +116,16 @@ def main():
...
@@ -116,7 +116,16 @@ def main():
cfg
[
'save_prediction_only'
]
=
FLAGS
.
save_prediction_only
cfg
[
'save_prediction_only'
]
=
FLAGS
.
save_prediction_only
merge_config
(
FLAGS
.
opt
)
merge_config
(
FLAGS
.
opt
)
place
=
paddle
.
set_device
(
'gpu'
if
cfg
.
use_gpu
else
'cpu'
)
# disable npu in config by default
if
'use_npu'
not
in
cfg
:
cfg
.
use_npu
=
False
if
cfg
.
use_gpu
:
place
=
paddle
.
set_device
(
'gpu'
)
elif
cfg
.
use_npu
:
place
=
paddle
.
set_device
(
'npu'
)
else
:
place
=
paddle
.
set_device
(
'cpu'
)
if
'norm_type'
in
cfg
and
cfg
[
'norm_type'
]
==
'sync_bn'
and
not
cfg
.
use_gpu
:
if
'norm_type'
in
cfg
and
cfg
[
'norm_type'
]
==
'sync_bn'
and
not
cfg
.
use_gpu
:
cfg
[
'norm_type'
]
=
'bn'
cfg
[
'norm_type'
]
=
'bn'
...
@@ -126,6 +135,7 @@ def main():
...
@@ -126,6 +135,7 @@ def main():
check_config
(
cfg
)
check_config
(
cfg
)
check_gpu
(
cfg
.
use_gpu
)
check_gpu
(
cfg
.
use_gpu
)
check_npu
(
cfg
.
use_npu
)
check_version
()
check_version
()
run
(
FLAGS
,
cfg
)
run
(
FLAGS
,
cfg
)
...
...
tools/infer.py
浏览文件 @
69d21d88
...
@@ -31,7 +31,7 @@ import glob
...
@@ -31,7 +31,7 @@ import glob
import
paddle
import
paddle
from
ppdet.core.workspace
import
load_config
,
merge_config
from
ppdet.core.workspace
import
load_config
,
merge_config
from
ppdet.engine
import
Trainer
from
ppdet.engine
import
Trainer
from
ppdet.utils.check
import
check_gpu
,
check_version
,
check_config
from
ppdet.utils.check
import
check_gpu
,
check_
npu
,
check_
version
,
check_config
from
ppdet.utils.cli
import
ArgsParser
from
ppdet.utils.cli
import
ArgsParser
from
ppdet.slim
import
build_slim_model
from
ppdet.slim
import
build_slim_model
...
@@ -141,7 +141,16 @@ def main():
...
@@ -141,7 +141,16 @@ def main():
cfg
[
'vdl_log_dir'
]
=
FLAGS
.
vdl_log_dir
cfg
[
'vdl_log_dir'
]
=
FLAGS
.
vdl_log_dir
merge_config
(
FLAGS
.
opt
)
merge_config
(
FLAGS
.
opt
)
place
=
paddle
.
set_device
(
'gpu'
if
cfg
.
use_gpu
else
'cpu'
)
# disable npu in config by default
if
'use_npu'
not
in
cfg
:
cfg
.
use_npu
=
False
if
cfg
.
use_gpu
:
place
=
paddle
.
set_device
(
'gpu'
)
elif
cfg
.
use_npu
:
place
=
paddle
.
set_device
(
'npu'
)
else
:
place
=
paddle
.
set_device
(
'cpu'
)
if
'norm_type'
in
cfg
and
cfg
[
'norm_type'
]
==
'sync_bn'
and
not
cfg
.
use_gpu
:
if
'norm_type'
in
cfg
and
cfg
[
'norm_type'
]
==
'sync_bn'
and
not
cfg
.
use_gpu
:
cfg
[
'norm_type'
]
=
'bn'
cfg
[
'norm_type'
]
=
'bn'
...
@@ -151,6 +160,7 @@ def main():
...
@@ -151,6 +160,7 @@ def main():
check_config
(
cfg
)
check_config
(
cfg
)
check_gpu
(
cfg
.
use_gpu
)
check_gpu
(
cfg
.
use_gpu
)
check_npu
(
cfg
.
use_npu
)
check_version
()
check_version
()
run
(
FLAGS
,
cfg
)
run
(
FLAGS
,
cfg
)
...
...
tools/train.py
浏览文件 @
69d21d88
...
@@ -127,7 +127,16 @@ def main():
...
@@ -127,7 +127,16 @@ def main():
cfg
[
'profiler_options'
]
=
FLAGS
.
profiler_options
cfg
[
'profiler_options'
]
=
FLAGS
.
profiler_options
merge_config
(
FLAGS
.
opt
)
merge_config
(
FLAGS
.
opt
)
place
=
paddle
.
set_device
(
'gpu'
if
cfg
.
use_gpu
else
'cpu'
)
# disable npu in config by default
if
'use_npu'
not
in
cfg
:
cfg
.
use_npu
=
False
if
cfg
.
use_gpu
:
place
=
paddle
.
set_device
(
'gpu'
)
elif
cfg
.
use_npu
:
place
=
paddle
.
set_device
(
'npu'
)
else
:
place
=
paddle
.
set_device
(
'cpu'
)
if
'norm_type'
in
cfg
and
cfg
[
'norm_type'
]
==
'sync_bn'
and
not
cfg
.
use_gpu
:
if
'norm_type'
in
cfg
and
cfg
[
'norm_type'
]
==
'sync_bn'
and
not
cfg
.
use_gpu
:
cfg
[
'norm_type'
]
=
'bn'
cfg
[
'norm_type'
]
=
'bn'
...
@@ -139,6 +148,7 @@ def main():
...
@@ -139,6 +148,7 @@ def main():
merge_config
(
FLAGS
.
opt
)
merge_config
(
FLAGS
.
opt
)
check
.
check_config
(
cfg
)
check
.
check_config
(
cfg
)
check
.
check_gpu
(
cfg
.
use_gpu
)
check
.
check_gpu
(
cfg
.
use_gpu
)
check
.
check_npu
(
cfg
.
use_npu
)
check
.
check_version
()
check
.
check_version
()
run
(
FLAGS
,
cfg
)
run
(
FLAGS
,
cfg
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录