1 Star 0 Fork 1

alex/External-Attention-pytorch

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.py 306 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jason 提交于 2021-10-29 16:41 . UFOAttention
from model.attention.UFOAttention import *
import torch
from torch import nn
from torch.nn import functional as F
if __name__ == '__main__':
input=torch.randn(50,49,512)
ufo = UFOAttention(d_model=512, d_k=512, d_v=512, h=8)
output=ufo(input,input,input)
print(output.shape) #[50, 49, 512]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hyx007/External-Attention-pytorch.git
git@gitee.com:hyx007/External-Attention-pytorch.git
hyx007
External-Attention-pytorch
External-Attention-pytorch
master

搜索帮助