Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
8f5aaac5
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看板
未验证
提交
8f5aaac5
编写于
6月 17, 2021
作者:
W
Wei Shengyu
提交者:
GitHub
6月 17, 2021
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1 from PaddlePaddle/develop
Develop
上级
d323624d
e7330ee5
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
4 addition
and
69 deletion
+4
-69
README.md
README.md
+0
-2
ppcls/arch/backbone/__init__.py
ppcls/arch/backbone/__init__.py
+0
-1
ppcls/arch/backbone/model_zoo/distillation_models.py
ppcls/arch/backbone/model_zoo/distillation_models.py
+0
-65
ppcls/configs/Cartoonface/ResNet50_icartoon.yaml
ppcls/configs/Cartoonface/ResNet50_icartoon.yaml
+1
-1
ppcls/configs/Products/ResNet50_vd_Aliproduct.yaml
ppcls/configs/Products/ResNet50_vd_Aliproduct.yaml
+3
-0
未找到文件。
README.md
浏览文件 @
8f5aaac5
...
...
@@ -8,8 +8,6 @@
飞桨图像识别套件PaddleClas是飞桨为工业界和学术界所准备的一个图像识别任务的工具集,助力使用者训练出更好的视觉模型和应用落地。
**近期更新**
-
2021.06.16 PaddleClas v2.2版本升级
-
集成Metric learning,向量检索等组件。
-
新增商品识别、动漫人物识别、车辆识别和logo识别等4个图像识别应用。
...
...
ppcls/arch/backbone/__init__.py
浏览文件 @
8f5aaac5
...
...
@@ -45,7 +45,6 @@ from ppcls.arch.backbone.model_zoo.darknet import DarkNet53
from
ppcls.arch.backbone.model_zoo.regnet
import
RegNetX_200MF
,
RegNetX_4GF
,
RegNetX_32GF
,
RegNetY_200MF
,
RegNetY_4GF
,
RegNetY_32GF
from
ppcls.arch.backbone.model_zoo.vision_transformer
import
ViT_small_patch16_224
,
ViT_base_patch16_224
,
ViT_base_patch16_384
,
ViT_base_patch32_384
,
ViT_large_patch16_224
,
ViT_large_patch16_384
,
ViT_large_patch32_384
,
ViT_huge_patch16_224
,
ViT_huge_patch32_384
from
ppcls.arch.backbone.model_zoo.distilled_vision_transformer
import
DeiT_tiny_patch16_224
,
DeiT_small_patch16_224
,
DeiT_base_patch16_224
,
DeiT_tiny_distilled_patch16_224
,
DeiT_small_distilled_patch16_224
,
DeiT_base_distilled_patch16_224
,
DeiT_base_patch16_384
,
DeiT_base_distilled_patch16_384
from
ppcls.arch.backbone.model_zoo.distillation_models
import
ResNet50_vd_distill_MobileNetV3_large_x1_0
,
ResNeXt101_32x16d_wsl_distill_ResNet50_vd
from
ppcls.arch.backbone.model_zoo.swin_transformer
import
SwinTransformer_tiny_patch4_window7_224
,
SwinTransformer_small_patch4_window7_224
,
SwinTransformer_base_patch4_window7_224
,
SwinTransformer_base_patch4_window12_384
,
SwinTransformer_large_patch4_window7_224
,
SwinTransformer_large_patch4_window12_384
from
ppcls.arch.backbone.model_zoo.mixnet
import
MixNet_S
,
MixNet_M
,
MixNet_L
from
ppcls.arch.backbone.model_zoo.rexnet
import
ReXNet_1_0
,
ReXNet_1_3
,
ReXNet_1_5
,
ReXNet_2_0
,
ReXNet_3_0
...
...
ppcls/arch/backbone/model_zoo/distillation_models.py
已删除
100644 → 0
浏览文件 @
d323624d
# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
#
# 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.
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
import
math
import
paddle
import
paddle.nn
as
nn
from
.resnet_vd
import
ResNet50_vd
from
.mobilenet_v3
import
MobileNetV3_large_x1_0
from
.resnext101_wsl
import
ResNeXt101_32x16d_wsl
__all__
=
[
'ResNet50_vd_distill_MobileNetV3_large_x1_0'
,
'ResNeXt101_32x16d_wsl_distill_ResNet50_vd'
]
class
ResNet50_vd_distill_MobileNetV3_large_x1_0
(
nn
.
Layer
):
def
__init__
(
self
,
class_dim
=
1000
,
freeze_teacher
=
True
,
**
args
):
super
(
ResNet50_vd_distill_MobileNetV3_large_x1_0
,
self
).
__init__
()
self
.
teacher
=
ResNet50_vd
(
class_dim
=
class_dim
,
**
args
)
self
.
student
=
MobileNetV3_large_x1_0
(
class_dim
=
class_dim
,
**
args
)
if
freeze_teacher
:
for
param
in
self
.
teacher
.
parameters
():
param
.
trainable
=
False
def
forward
(
self
,
x
):
teacher_label
=
self
.
teacher
(
x
)
student_label
=
self
.
student
(
x
)
return
teacher_label
,
student_label
class
ResNeXt101_32x16d_wsl_distill_ResNet50_vd
(
nn
.
Layer
):
def
__init__
(
self
,
class_dim
=
1000
,
freeze_teacher
=
True
,
**
args
):
super
(
ResNeXt101_32x16d_wsl_distill_ResNet50_vd
,
self
).
__init__
()
self
.
teacher
=
ResNeXt101_32x16d_wsl
(
class_dim
=
class_dim
,
**
args
)
self
.
student
=
ResNet50_vd
(
class_dim
=
class_dim
,
**
args
)
if
freeze_teacher
:
for
param
in
self
.
teacher
.
parameters
():
param
.
trainable
=
False
def
forward
(
self
,
x
):
teacher_label
=
self
.
teacher
(
x
)
student_label
=
self
.
student
(
x
)
return
teacher_label
,
student_label
ppcls/configs/Cartoonface/ResNet50_icartoon.yaml
浏览文件 @
8f5aaac5
...
...
@@ -14,7 +14,7 @@ Global:
use_visualdl
:
False
image_shape
:
[
3
,
224
,
224
]
infer_imgs
:
save_inference_dir
:
"
./
output
"
save_inference_dir
:
"
./
inference
"
feature_normalize
:
True
Arch
:
...
...
ppcls/configs/Products/ResNet50_vd_Aliproduct.yaml
浏览文件 @
8f5aaac5
...
...
@@ -19,6 +19,9 @@ Global:
# model architecture
Arch
:
name
:
RecModel
infer_output_key
:
features
infer_add_softmax
:
False
Backbone
:
name
:
ResNet50_vd
pretrained
:
True
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录