Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
45742397
P
PaddleClas
项目概览
PaddlePaddle
/
PaddleClas
大约 1 年 前同步成功
通知
115
Star
4999
Fork
1114
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
6
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleClas
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
6
合并请求
6
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
45742397
编写于
10月 17, 2022
作者:
H
HydrogenSulfate
提交者:
GitHub
10月 17, 2022
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #2374 from HydrogenSulfate/fix_dali
add batch Tensor collate to simplify dali code in train/eval/retrival…
上级
c007cc6b
61b41539
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
18 addition
and
20 deletion
+18
-20
ppcls/data/dataloader/dali.py
ppcls/data/dataloader/dali.py
+15
-5
ppcls/engine/evaluation/classification.py
ppcls/engine/evaluation/classification.py
+1
-5
ppcls/engine/evaluation/retrieval.py
ppcls/engine/evaluation/retrieval.py
+1
-5
ppcls/engine/train/train.py
ppcls/engine/train/train.py
+1
-5
未找到文件。
ppcls/data/dataloader/dali.py
浏览文件 @
45742397
...
...
@@ -14,14 +14,12 @@
from
__future__
import
division
import
copy
import
os
import
numpy
as
np
import
nvidia.dali.ops
as
ops
import
nvidia.dali.types
as
types
import
paddle
from
nvidia.dali
import
fn
from
typing
import
List
from
nvidia.dali.pipeline
import
Pipeline
from
nvidia.dali.plugin.paddle
import
DALIGenericIterator
...
...
@@ -143,6 +141,18 @@ class HybridValPipe(Pipeline):
return
self
.
epoch_size
(
"Reader"
)
class
DALIImageNetIterator
(
DALIGenericIterator
):
def
__next__
(
self
)
->
List
[
paddle
.
Tensor
]:
data_batch
=
super
(
DALIImageNetIterator
,
self
).
__next__
()
# List[Dict[str, Tensor], ...]
# reformat to List[Tensor1, Tensor2, ...]
data_batch
=
[
paddle
.
to_tensor
(
data_batch
[
0
][
key
])
for
key
in
self
.
output_map
]
return
data_batch
def
dali_dataloader
(
config
,
mode
,
device
,
num_threads
=
4
,
seed
=
None
):
assert
"gpu"
in
device
,
"gpu training is required for DALI"
device_id
=
int
(
device
.
split
(
':'
)[
1
])
...
...
@@ -278,7 +288,7 @@ def dali_dataloader(config, mode, device, num_threads=4, seed=None):
pipe
.
build
()
pipelines
=
[
pipe
]
# sample_per_shard = len(pipelines[0])
return
DALI
Generic
Iterator
(
return
DALI
ImageNet
Iterator
(
pipelines
,
[
'data'
,
'label'
],
reader_name
=
'Reader'
)
else
:
resize_shorter
=
transforms
[
"ResizeImage"
].
get
(
"resize_short"
,
256
)
...
...
@@ -318,5 +328,5 @@ def dali_dataloader(config, mode, device, num_threads=4, seed=None):
pad_output
=
pad_output
,
output_dtype
=
output_dtype
)
pipe
.
build
()
return
DALI
Generic
Iterator
(
return
DALI
ImageNet
Iterator
(
[
pipe
],
[
'data'
,
'label'
],
reader_name
=
"Reader"
)
ppcls/engine/evaluation/classification.py
浏览文件 @
45742397
...
...
@@ -47,11 +47,7 @@ def classification_eval(engine, epoch_id=0):
if
iter_id
==
5
:
for
key
in
time_info
:
time_info
[
key
].
reset
()
if
engine
.
use_dali
:
batch
=
[
paddle
.
to_tensor
(
batch
[
0
][
'data'
]),
paddle
.
to_tensor
(
batch
[
0
][
'label'
])
]
time_info
[
"reader_cost"
].
update
(
time
.
time
()
-
tic
)
batch_size
=
batch
[
0
].
shape
[
0
]
batch
[
0
]
=
paddle
.
to_tensor
(
batch
[
0
])
...
...
ppcls/engine/evaluation/retrieval.py
浏览文件 @
45742397
...
...
@@ -155,11 +155,7 @@ def cal_feature(engine, name='gallery'):
logger
.
info
(
f
"
{
name
}
feature calculation process: [
{
idx
}
/
{
len
(
dataloader
)
}
]"
)
if
engine
.
use_dali
:
batch
=
[
paddle
.
to_tensor
(
batch
[
0
][
'data'
]),
paddle
.
to_tensor
(
batch
[
0
][
'label'
])
]
batch
=
[
paddle
.
to_tensor
(
x
)
for
x
in
batch
]
batch
[
1
]
=
batch
[
1
].
reshape
([
-
1
,
1
]).
astype
(
"int64"
)
if
len
(
batch
)
==
3
:
...
...
ppcls/engine/train/train.py
浏览文件 @
45742397
...
...
@@ -29,11 +29,7 @@ def train_epoch(engine, epoch_id, print_batch_step):
for
key
in
engine
.
time_info
:
engine
.
time_info
[
key
].
reset
()
engine
.
time_info
[
"reader_cost"
].
update
(
time
.
time
()
-
tic
)
if
engine
.
use_dali
:
batch
=
[
paddle
.
to_tensor
(
batch
[
0
][
'data'
]),
paddle
.
to_tensor
(
batch
[
0
][
'label'
])
]
batch_size
=
batch
[
0
].
shape
[
0
]
if
not
engine
.
config
[
"Global"
].
get
(
"use_multilabel"
,
False
):
batch
[
1
]
=
batch
[
1
].
reshape
([
batch_size
,
-
1
])
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录