Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
85ca658e
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看板
未验证
提交
85ca658e
编写于
6月 01, 2021
作者:
B
Bin Lu
提交者:
GitHub
6月 01, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update __init__.py
上级
9c395ac8
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
25 addition
and
22 deletion
+25
-22
ppcls/arch/__init__.py
ppcls/arch/__init__.py
+25
-22
未找到文件。
ppcls/arch/__init__.py
浏览文件 @
85ca658e
...
...
@@ -18,11 +18,14 @@ import importlib
import
paddle.nn
as
nn
from
.
import
backbone
from
.
import
head
from
.backbone
import
*
from
ppcls.arch.loss_metrics.loss
import
*
from
.head
import
*
from
.utils
import
*
__all__
=
[
"build_model"
,
"RecModel"
]
def
build_model
(
config
):
config
=
copy
.
deepcopy
(
config
)
...
...
@@ -35,31 +38,31 @@ def build_model(config):
class
RecModel
(
nn
.
Layer
):
def
__init__
(
self
,
**
config
):
super
().
__init__
()
backbone_config
=
config
[
"Backbone"
]
backbone_name
=
backbone_config
.
pop
(
"name"
)
self
.
backbone
=
getattr
(
backbone_name
)(
**
backbone_config
)
if
"backbone_stop_layer"
in
config
:
backbone_stop_layer
=
config
[
"backbone_stop_layer"
]
self
.
backbone
.
stop_layer
(
backbone_stop_layer
)
self
.
backbone
=
eval
(
backbone_name
)(
**
backbone_config
)
if
"Neck"
in
config
:
neck_config
=
config
[
"Neck"
]
neck_name
=
neck_config
.
pop
(
"name"
)
self
.
neck
=
getattr
(
neck_name
)(
**
neck_config
)
assert
"Stoplayer"
in
config
,
"Stoplayer should be specified in retrieval task
\
please specified a Stoplayer config"
stop_layer_config
=
config
[
"Stoplayer"
]
self
.
backbone
.
stop_after
(
stop_layer_config
[
"name"
])
if
stop_layer_config
.
get
(
"embedding_size"
,
0
)
>
0
:
self
.
neck
=
nn
.
Linear
(
stop_layer_config
[
"output_dim"
],
stop_layer_config
[
"embedding_size"
])
embedding_size
=
stop_layer_config
[
"embedding_size"
]
else
:
self
.
neck
=
None
embedding_size
=
stop_layer_config
[
"output_dim"
]
assert
"Head"
in
config
,
"Head should be specified in retrieval task
\
please specify a Head config"
config
[
"Head"
][
"embedding_size"
]
=
embedding_size
self
.
head
=
build_head
(
config
[
"Head"
])
if
"Head"
in
config
:
head_config
=
config
[
"Head"
]
head_name
=
head_config
.
pop
(
"name"
)
self
.
head
=
getattr
(
head_name
)(
**
head_config
)
else
:
self
.
head
=
None
def
forward
(
self
,
x
):
y
=
self
.
backbone
(
x
)
def
forward
(
self
,
x
,
label
):
x
=
self
.
backbone
(
x
)
if
self
.
neck
is
not
None
:
y
=
self
.
neck
(
y
)
if
self
.
head
is
not
None
:
y
=
self
.
head
(
y
)
return
y
x
=
self
.
neck
(
x
)
y
=
self
.
head
(
x
,
label
)
return
{
"features"
:
x
,
"logits"
:
y
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录