-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
【Hackathon 5th No.69】 分类大模型--人体视觉任务SOLIDER #2995
Merged
Merged
Changes from 3 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
b8fd67b
add_solider
Yang-Changhui 5c3e2f1
add_solider
Yang-Changhui d2a4d9a
add_solider
Yang-Changhui d0c9129
add_solider
Yang-Changhui d6d91b3
add_solider
Yang-Changhui 1812f81
add_solider
Yang-Changhui 6dd7298
add_solider
Yang-Changhui e305387
add_solider
Yang-Changhui 0daa774
add_solider
Yang-Changhui 1994dc1
add_solider
Yang-Changhui c8e210d
add_solider
Yang-Changhui File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Solider | ||
|
||
----- | ||
## 目录 | ||
|
||
- [1. 模型介绍](#1) | ||
- [2. 对齐日志、模型](#2) | ||
|
||
<a name='1'></a> | ||
|
||
## 1. 模型介绍 | ||
|
||
Solider是一个语义可控的自监督学习框架,可以从大量未标记的人体图像中学习一般的人类表征,从而最大限度地有利于下游以人类为中心的任务。与已有的自监督学习方法不同,该方法利用人体图像中的先验知识建立伪语义标签,并将更多的语义信息引入到学习的表示中。同时,不同的下游任务往往需要不同比例的语义信息和外观信息,单一的学习表示不能满足所有需求。为了解决这一问题,Solider引入了一种带有语义控制器的条件网络,可以满足下游任务的不同需求。[论文地址](https://arxiv.org/abs/2303.17602)。 | ||
|
||
<a name='2'></a> | ||
|
||
## 2. 对齐日志、模型 | ||
|
||
| model | weight | log | | ||
| ----------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ | | ||
| swin_tiny_patch4_window7_224 | 链接:https://pan.baidu.com/s/1QdUviOSW2RdS3UGGxxHEAA?pwd=qcdd <br/>提取码:qcdd | 链接:https://pan.baidu.com/s/1W5zUFboMMhXETy4HEWbM3Q?pwd=45nx <br/>提取码:45nx | | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| swin_small_patch4_window7_224 | 链接:https://pan.baidu.com/s/1rvGSOSn0REEWoNcSsGMTrQ?pwd=ub5q <br/>提取码:ub5q | 链接:https://pan.baidu.com/s/1sqcUdfv6FyhW9_QgxBUPWA?pwd=letv <br/>提取码:letv | | ||
| swin_base_patch4_window7_224 | 链接:https://pan.baidu.com/s/1hp9TPQBBF8mSYI0UehITMQ?pwd=x5ht <br/>提取码:x5ht | 链接:https://pan.baidu.com/s/1S2TgDxDRa72C_3FrP8duiA?pwd=u3d2 <br/>提取码:u3d2 | | ||
|
||
[1]:基于 LUPerson 数据集预训练 | ||
|
||
<a name='3'></a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,6 +91,9 @@ | |
from .variant_models.pp_lcnetv2_variant import PPLCNetV2_base_ShiTu | ||
from .variant_models.efficientnet_variant import EfficientNetB3_watermark | ||
from .variant_models.foundation_vit_variant import CLIP_large_patch14_224_aesthetic | ||
from .variant_models.swin_transformer_variant import SwinTransformer_tiny_patch4_window7_224_SOLIDER | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这个一次全部import吧 |
||
from .variant_models.swin_transformer_variant import SwinTransformer_small_patch4_window7_224_SOLIDER | ||
from .variant_models.swin_transformer_variant import SwinTransformer_base_patch4_window7_224_SOLIDER | ||
from .model_zoo.adaface_ir_net import AdaFace_IR_18, AdaFace_IR_34, AdaFace_IR_50, AdaFace_IR_101, AdaFace_IR_152, AdaFace_IR_SE_50, AdaFace_IR_SE_101, AdaFace_IR_SE_152, AdaFace_IR_SE_200 | ||
from .model_zoo.wideresnet import WideResNet | ||
from .model_zoo.uniformer import UniFormer_small, UniFormer_small_plus, UniFormer_small_plus_dim64, UniFormer_base, UniFormer_base_ls | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
注意到这个链接名字不太对,我已将
SOILDER
改为SOLIDER
,麻烦更改一下吧~