简化的动态稀疏视觉Transformer的PyTorch代码

存一串代码(简化的动态稀疏视觉Transformer的PyTorch代码)

复制代码
import torch 
import torch.nn  as nn 
import torch.nn.functional  as F 
 
class DynamicSparseAttention(nn.Module): 
    def __init__(self, dim, num_heads=8, dropout=0.1): 
        super().__init__() 
        self.num_heads  = num_heads 
        self.head_dim  = dim // num_heads 
        self.scale  = self.head_dim  ** -0.5 
 
        self.qkv  = nn.Linear(dim, dim * 3, bias=False) 
        self.attn_drop  = nn.Dropout(dropout) 
        self.proj  = nn.Linear(dim, dim) 
        self.proj_drop  = nn.Dropout(dropout) 
 
    def forward(self, x): 
        B, N, C = x.shape  
        qkv = self.qkv(x).reshape(B,  N, 3, self.num_heads,  self.head_dim).permute(2,  0, 3, 1, 4) 
        q, k, v = qkv.unbind(0)  
 
        attn = (q @ k.transpose(-2,  -1)) * self.scale  
        attn = attn.softmax(dim=-1)  
        attn = self.attn_drop(attn)  
 
        x = (attn @ v).transpose(1, 2).reshape(B, N, C) 
        x = self.proj(x)  
        x = self.proj_drop(x)  
        return x 
 
class HierarchicalRoutingBlock(nn.Module): 
    def __init__(self, dim, num_heads=8, mlp_ratio=4., dropout=0.1): 
        super().__init__() 
        self.norm1  = nn.LayerNorm(dim) 
        self.attn  = DynamicSparseAttention(dim, num_heads, dropout) 
        self.norm2  = nn.LayerNorm(dim) 
        self.mlp  = nn.Sequential( 
            nn.Linear(dim, int(dim * mlp_ratio)), 
            nn.GELU(), 
            nn.Dropout(dropout), 
            nn.Linear(int(dim * mlp_ratio), dim), 
            nn.Dropout(dropout) 
        ) 
 
    def forward(self, x): 
        x = x + self.attn(self.norm1(x))  
        x = x + self.mlp(self.norm2(x))  
        return x 
 
class DynamicSparseVisionTransformer(nn.Module): 
    def __init__(self, img_size=224, patch_size=16, num_classes=1000, dim=768, num_heads=8, depth=12, mlp_ratio=4., dropout=0.1): 
        super().__init__() 
        self.patch_embed  = nn.Conv2d(3, dim, kernel_size=patch_size, stride=patch_size) 
        self.pos_embed  = nn.Parameter(torch.zeros(1,  (img_size // patch_size) ** 2, dim)) 
        self.dropout  = nn.Dropout(dropout) 
 
        self.blocks  = nn.ModuleList([HierarchicalRoutingBlock(dim, num_heads, mlp_ratio, dropout) for _ in range(depth)]) 
        self.norm  = nn.LayerNorm(dim) 
 
        self.head  = nn.Linear(dim, num_classes) if num_classes > 0 else nn.Identity() 
 
    def forward(self, x): 
        x = self.patch_embed(x).flatten(2).transpose(1,  2) 
        x = x + self.pos_embed  
        x = self.dropout(x)  
 
        for blk in self.blocks:  
            x = blk(x) 
 
        x = self.norm(x)  
        x = x[:, 0] 
        x = self.head(x)  
        return x 
 
# 使用 
model = DynamicSparseVisionTransformer() 
x = torch.randn(1,  3, 224, 224) 
output = model(x) 
print(output.shape)  

代码解释

DynamicSparseAttention:实现动态稀疏注意力模块。

HierarchicalRoutingBlock:实现层次化路由块,包含注意力模块和多层感知机。

DynamicSparseVisionTransformer:实现完整的动态稀疏视觉Transformer模型,包括补丁嵌入、位置嵌入、层次化路由块和分类头。

相关推荐
转转技术团队35 分钟前
没有测试的核心代码,怎么交给 AI 重构
人工智能
爱读源码的大都督2 小时前
Claude Code源码分析(三):为什么系统提示词中需要有tools呢?
前端·人工智能·后端
半个落月3 小时前
LLM如何预测下一个Token?一文拆解Transformer核心流程
人工智能
触底反弹3 小时前
🔥 2026 年爆火的 Harness Engineering 到底是什么?从原理到实战一文讲透
javascript·人工智能·程序员
user4465117917913 小时前
源码深读 XAgent:6 个 Agent 怎么分工?工具失败不崩、死循环怎么防?
人工智能
魏祖潇3 小时前
SDD 完整指南——Spec 端打底、Story 端交付、留白区
人工智能·后端
常丛丛3 小时前
5.9 式输出:实时查看 LangGraph Agent 思考过程
人工智能
Token炼金师3 小时前
从节点图到低秩矩阵:ComfyUI 推理引擎与 LoRA 适配机制拆解
人工智能·aigc
武子康3 小时前
调查研究-210 Netflix 用 AI 复刻 Gene Wilder 的声音:语音克隆的下半场,不是模型,而是权利
人工智能·aigc·openai