Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleGAN
提交
a99e5064
P
PaddleGAN
项目概览
PaddlePaddle
/
PaddleGAN
大约 2 年 前同步成功
通知
100
Star
7254
Fork
1210
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleGAN
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
a99e5064
编写于
4月 18, 2023
作者:
D
duanyanhui
提交者:
GitHub
4月 18, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update npu inference api (#779)
上级
fb1b085b
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
12 addition
and
9 deletion
+12
-9
tools/inference.py
tools/inference.py
+12
-9
未找到文件。
tools/inference.py
浏览文件 @
a99e5064
...
...
@@ -118,7 +118,7 @@ def create_predictor(model_path,
elif
device
==
"cpu"
:
config
.
disable_gpu
()
elif
device
==
"npu"
:
config
.
enable_
npu
(
)
config
.
enable_
custom_device
(
'npu'
)
elif
device
==
"xpu"
:
config
.
enable_xpu
()
else
:
...
...
@@ -174,11 +174,10 @@ def main():
random
.
seed
(
args
.
seed
)
np
.
random
.
seed
(
args
.
seed
)
cfg
=
get_config
(
args
.
config_file
,
args
.
opt
,
show
=
True
)
predictor
,
config
=
create_predictor
(
args
.
model_path
,
args
.
device
,
args
.
run_mode
,
args
.
batch_size
,
args
.
min_subgraph_size
,
args
.
use_dynamic_shape
,
args
.
trt_min_shape
,
args
.
trt_max_shape
,
args
.
trt_opt_shape
,
args
.
trt_calib_mode
)
predictor
,
config
=
create_predictor
(
args
.
model_path
,
args
.
device
,
args
.
run_mode
,
args
.
batch_size
,
args
.
min_subgraph_size
,
args
.
use_dynamic_shape
,
args
.
trt_min_shape
,
args
.
trt_max_shape
,
args
.
trt_opt_shape
,
args
.
trt_calib_mode
)
input_handles
=
[
predictor
.
get_input_handle
(
name
)
for
name
in
predictor
.
get_input_names
()
...
...
@@ -233,7 +232,7 @@ def main():
model_precision
=
args
.
run_mode
,
batch_size
=
args
.
batch_size
,
data_shape
=
size
,
save_path
=
args
.
output_path
+
'auto_log.lpg'
,
save_path
=
args
.
output_path
+
'auto_log.lpg'
,
inference_config
=
config
,
pids
=
pid
,
process_name
=
None
,
...
...
@@ -254,7 +253,11 @@ def main():
save_image
(
image_numpy
,
os
.
path
.
join
(
args
.
output_path
,
"cyclegan/{}.png"
.
format
(
i
)))
logger
.
info
(
"Inference succeeded! The inference result has been saved in {}"
.
format
(
os
.
path
.
join
(
args
.
output_path
,
"cyclegan/{}.png"
.
format
(
i
))))
logger
.
info
(
"Inference succeeded! The inference result has been saved in {}"
.
format
(
os
.
path
.
join
(
args
.
output_path
,
"cyclegan/{}.png"
.
format
(
i
))))
auto_logger
.
times
.
end
(
stamp
=
True
)
auto_logger
.
report
()
metric_file
=
os
.
path
.
join
(
args
.
output_path
,
"cyclegan/metric.txt"
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录