查看swintransformer的网络结构

import torch
#导入对应的模型
from model import swin_tiny_patch4_window7_224 as create_model
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
model = create_model(num_classes=5).to(device)#实际上有没有.to(device)输出的model都一样
print(model)

输出结构
SwinTransformer(
(patch_embed): PatchEmbed(
(proj): Conv2d(3, 96, kernel_size=(4, 4), stride=(4, 4))
(norm): LayerNorm((96,), eps=1e-05, elementwise

查看swintransformer的网络结构最先出现在Python成神之路

版权声明:
作者:Zad
链接:https://www.techfm.club/p/13912.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>