⚪查看代码:python xxx.py
import timm
if __name__ == '__main__':
model_vit = timm.list_models('*vit*')
print(len(model_vit),model_vit[:])
⚪结合vision transformer理解
7 ResNets:
- R50x1, R50x2 R101x1, R152x1, R152x2, pre-trained for 7 epochs,
- plus R152x2 and R200x3 pre-trained for 14 epochs;
6 Vision Transformers:
- ViT-B/32, B/16, L/32, L/16, pre-trained for 7 epochs,
- plus L/16 and H/14 pre-trained for 14 epochs;
5 hybrids,
- R50+ViT-B/32, B/16, L/32, L/16 pretrained for 7 epochs,
- plus R50+ViT-L/16 pre-trained for 14 epochs
参数解读:
- 以ViT-L/16为例,表示ViT Large模型,对应patch_size为16。
- 但是,混合模

4万+

被折叠的 条评论
为什么被折叠?



