Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
876732fb
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看板
提交
876732fb
编写于
3月 14, 2023
作者:
T
Tingquan Gao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Revert "debug"
This reverts commit
ac27cb19
.
上级
97a8bb7f
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
7 addition
and
4 deletion
+7
-4
ppcls/arch/__init__.py
ppcls/arch/__init__.py
+6
-3
ppcls/engine/train/classification.py
ppcls/engine/train/classification.py
+1
-1
未找到文件。
ppcls/arch/__init__.py
浏览文件 @
876732fb
...
...
@@ -101,7 +101,8 @@ class RecModel(TheseusLayer):
else
:
self
.
head
=
None
def
forward
(
self
,
x
,
label
=
None
):
def
forward
(
self
,
batch
):
x
,
label
=
batch
[
0
],
batch
[
1
]
out
=
dict
()
x
=
self
.
backbone
(
x
)
out
[
"backbone"
]
=
x
...
...
@@ -153,7 +154,8 @@ class DistillationModel(nn.Layer):
load_dygraph_pretrain
(
self
.
model_name_list
[
idx
],
path
=
pretrained
)
def
forward
(
self
,
x
,
label
=
None
):
def
forward
(
self
,
batch
):
x
,
label
=
batch
[
0
],
batch
[
1
]
result_dict
=
dict
()
for
idx
,
model_name
in
enumerate
(
self
.
model_name_list
):
if
label
is
None
:
...
...
@@ -171,7 +173,8 @@ class AttentionModel(DistillationModel):
**
kargs
):
super
().
__init__
(
models
,
pretrained_list
,
freeze_params_list
,
**
kargs
)
def
forward
(
self
,
x
,
label
=
None
):
def
forward
(
self
,
batch
):
x
,
label
=
batch
[
0
],
batch
[
1
]
result_dict
=
dict
()
out
=
x
for
idx
,
model_name
in
enumerate
(
self
.
model_name_list
):
...
...
ppcls/engine/train/classification.py
浏览文件 @
876732fb
...
...
@@ -204,7 +204,7 @@ class ClassTrainer(object):
self
.
global_step
+=
1
if
self
.
is_rec
:
out
=
self
.
model
(
batch
[
0
],
batch
[
1
]
)
out
=
self
.
model
(
batch
)
else
:
out
=
self
.
model
(
batch
[
0
])
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录