Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
4e154aed
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4e154aed
编写于
6月 21, 2021
作者:
C
cuicheng01
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add GoogLeNetLoss
上级
69a72f7b
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
50 addition
and
3 deletion
+50
-3
ppcls/configs/ImageNet/Inception/GoogLeNet.yaml
ppcls/configs/ImageNet/Inception/GoogLeNet.yaml
+6
-3
ppcls/loss/__init__.py
ppcls/loss/__init__.py
+1
-0
ppcls/loss/googlenetloss.py
ppcls/loss/googlenetloss.py
+41
-0
ppcls/metric/metrics.py
ppcls/metric/metrics.py
+2
-0
未找到文件。
ppcls/configs/ImageNet/Inception/GoogLeNet.yaml
浏览文件 @
4e154aed
...
@@ -22,11 +22,10 @@ Arch:
...
@@ -22,11 +22,10 @@ Arch:
# loss function config for traing/eval process
# loss function config for traing/eval process
Loss
:
Loss
:
Train
:
Train
:
-
CE
Loss
:
-
GoogLeNet
Loss
:
weight
:
1.0
weight
:
1.0
epsilon
:
0.1
Eval
:
Eval
:
-
CE
Loss
:
-
GoogLeNet
Loss
:
weight
:
1.0
weight
:
1.0
...
@@ -36,6 +35,7 @@ Optimizer:
...
@@ -36,6 +35,7 @@ Optimizer:
lr
:
lr
:
name
:
Cosine
name
:
Cosine
learning_rate
:
0.01
learning_rate
:
0.01
warmup_epoch
:
5
regularizer
:
regularizer
:
name
:
'
L2'
name
:
'
L2'
coeff
:
0.0001
coeff
:
0.0001
...
@@ -77,6 +77,9 @@ DataLoader:
...
@@ -77,6 +77,9 @@ DataLoader:
image_root
:
./dataset/ILSVRC2012/
image_root
:
./dataset/ILSVRC2012/
cls_label_path
:
./dataset/ILSVRC2012/val_list.txt
cls_label_path
:
./dataset/ILSVRC2012/val_list.txt
transform_ops
:
transform_ops
:
-
DecodeImage
:
to_rgb
:
True
channel_first
:
False
-
ResizeImage
:
-
ResizeImage
:
resize_short
:
256
resize_short
:
256
-
CropImage
:
-
CropImage
:
...
...
ppcls/loss/__init__.py
浏览文件 @
4e154aed
...
@@ -5,6 +5,7 @@ import paddle.nn as nn
...
@@ -5,6 +5,7 @@ import paddle.nn as nn
from
ppcls.utils
import
logger
from
ppcls.utils
import
logger
from
.celoss
import
CELoss
from
.celoss
import
CELoss
from
.googlenetloss
import
GoogLeNetLoss
from
.centerloss
import
CenterLoss
from
.centerloss
import
CenterLoss
from
.emlloss
import
EmlLoss
from
.emlloss
import
EmlLoss
from
.msmloss
import
MSMLoss
from
.msmloss
import
MSMLoss
...
...
ppcls/loss/googlenetloss.py
0 → 100644
浏览文件 @
4e154aed
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import
paddle
import
paddle.nn
as
nn
import
paddle.nn.functional
as
F
class
GoogLeNetLoss
(
nn
.
Layer
):
"""
Cross entropy loss used after googlenet
"""
def
__init__
(
self
,
epsilon
=
None
):
super
().
__init__
()
assert
(
epsilon
is
None
or
epsilon
<=
0
or
epsilon
>=
1
),
"googlenet is not support label_smooth"
def
forward
(
self
,
inputs
,
label
):
input0
,
input1
,
input2
=
inputs
if
isinstance
(
input0
,
dict
):
input0
=
input0
[
"logits"
]
if
isinstance
(
input1
,
dict
):
input1
=
input1
[
"logits"
]
if
isinstance
(
input2
,
dict
):
input2
=
input2
[
"logits"
]
loss0
=
F
.
cross_entropy
(
input0
,
label
=
label
,
soft_label
=
False
)
loss1
=
F
.
cross_entropy
(
input1
,
label
=
label
,
soft_label
=
False
)
loss2
=
F
.
cross_entropy
(
input2
,
label
=
label
,
soft_label
=
False
)
loss
=
loss0
+
0.3
*
loss1
+
0.3
*
loss2
loss
=
loss
.
mean
()
return
{
"GooleNetLoss"
:
loss
}
ppcls/metric/metrics.py
浏览文件 @
4e154aed
...
@@ -25,6 +25,8 @@ class TopkAcc(nn.Layer):
...
@@ -25,6 +25,8 @@ class TopkAcc(nn.Layer):
self
.
topk
=
topk
self
.
topk
=
topk
def
forward
(
self
,
x
,
label
):
def
forward
(
self
,
x
,
label
):
if
isinstance
(
x
,
list
):
x
=
x
[
0
]
if
isinstance
(
x
,
dict
):
if
isinstance
(
x
,
dict
):
x
=
x
[
"logits"
]
x
=
x
[
"logits"
]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录