自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

17篇注意力機制PyTorch實現(xiàn),包含MLP、Re-Parameter系列熱門論文

新聞 人工智能
該項目共用 Pytorch 實現(xiàn)了 17 篇注意力機制論文。每篇論文包括題目(可直接鏈接到論文)、網(wǎng)絡(luò)架構(gòu)、代碼。

 [[415286]]

注意力(Attention)機制最早在計算機視覺中應(yīng)用,后來又在 NLP 領(lǐng)域發(fā)揚光大,該機制將有限的注意力集中在重點信息上,從而節(jié)省資源,快速獲得最有效的信息。

2014 年,Google DeepMind 發(fā)表《Recurrent Models of Visual Attention》,使注意力機制流行起來;2015 年,Bahdanau 等人在論文《Neural Machine Translation by Jointly Learning to Align and Translate》中,將注意力機制首次應(yīng)用在 NLP 領(lǐng)域;2017 年,Google 機器翻譯團(tuán)隊發(fā)表的《Attention is All You Need》中,完全拋棄了 RNN 和 CNN 等網(wǎng)絡(luò)結(jié)構(gòu),而僅僅采用注意力機制來進(jìn)行機器翻譯任務(wù),并且取得了很好的效果,注意力機制也因此成了研究熱點。

經(jīng)過幾年的發(fā)展,領(lǐng)域內(nèi)產(chǎn)生了眾多的注意力機制論文研究,這些工作在 CV、NLP 領(lǐng)域取得了較好的效果。近日,在 GitHub 上,有研究者介紹了 17 篇關(guān)于注意力機制論文的 PyTorch 的代碼實現(xiàn)以及使用方法。

17篇注意力機制PyTorch實現(xiàn),包含MLP、Re-Parameter系列熱門論文

項目地址:https://github.com/xmu-xiaoma666/External-Attention-pytorch

項目介紹

項目作者對注意力機制進(jìn)行了分類,分為三個系列:Attention 系列、MLP 系列、ReP(Re-Parameter)系列。其中 Attention 系列中包含有大名鼎鼎的《Attention is All You Need》等 11 篇論文;最近比較熱門的 MLP 系列包括谷歌的 MLP-Mixer、gMLP ,F(xiàn)acebook 的 ResMLP,清華的 RepMLP ;此外,ReP(Re-Parameter)系列包括清華等提出的 RepVGG、 ACNet。

Attention 系列的 11 篇 Attention 論文 Pytorch 實現(xiàn)方式如下:

17篇注意力機制PyTorch實現(xiàn),包含MLP、Re-Parameter系列熱門論文
  • Pytorch 實現(xiàn)論文「Beyond Self-attention: External Attention using Two Linear Layers for Visual Tasks---arXiv 2020.05.05」
  • Pytorch 實現(xiàn)論文「Attention Is All You Need---NIPS2017」
  • Pytorch 實現(xiàn)論文「Simplified Self Attention Usage」
  • Pytorch 實現(xiàn)論文 「Squeeze-and-Excitation Networks---CVPR2018」
  • Pytorch 實現(xiàn)論文「Selective Kernel Networks---CVPR2019」
  • Pytorch 實現(xiàn)論文「CBAM: Convolutional Block Attention Module---ECCV2018」
  • Pytorch 實現(xiàn)論文「BAM: Bottleneck Attention Module---BMCV2018」
  • Pytorch 實現(xiàn)論文「ECA-Net: Efficient Channel Attention for Deep Convolutional Neural Networks---CVPR2020」
  • Pytorch 實現(xiàn)論文「Dual Attention Network for Scene Segmentation---CVPR2019」
  • Pytorch 實現(xiàn)論文「EPSANet: An Efficient Pyramid Split Attention Block on Convolutional Neural Network---arXiv 2020.05.30」
  • Pytorch 實現(xiàn)論文 「ResT: An Efficient Transformer for Visual Recognition---arXiv 2020.05.28」

MLP(多層感知機)系列中,包含 篇論文 Pytorch 實現(xiàn)方式,論文如下:

17篇注意力機制PyTorch實現(xiàn),包含MLP、Re-Parameter系列熱門論文
  • Pytorch 實現(xiàn)論文「RepMLP: Re-parameterizing Convolutions into Fully-connected Layers for Image Recognition---arXiv 2020.05.05」
  • Pytorch 實現(xiàn)論文「MLP-Mixer: An all-MLP Architecture for Vision---arXiv 2020.05.17」
  • Pytorch 實現(xiàn)論文「ResMLP: Feedforward networks for image classification with data-efficient training---arXiv 2020.05.07」
  • Pytorch 實現(xiàn)論文「Pay Attention to MLPs---arXiv 2020.05.17」

ReP(Re-Parameter)系列中,包含 篇論文 Pytorch 實現(xiàn)方式,論文如下:

17篇注意力機制PyTorch實現(xiàn),包含MLP、Re-Parameter系列熱門論文
  • Pytorch 實現(xiàn)論文「RepVGG: Making VGG-style ConvNets Great Again---CVPR2021」
  • Pytorch 實現(xiàn)論文「ACNet: Strengthening the Kernel Skeletons for Powerful CNN via Asymmetric Convolution Blocks---ICCV2019」

總結(jié)來說,該項目共用 Pytorch 實現(xiàn)了 17 篇注意力機制論文。每篇論文包括題目(可直接鏈接到論文)、網(wǎng)絡(luò)架構(gòu)、代碼。示例如下:

論文:「Beyond Self-attention: External Attention using Two Linear Layers for Visual Tasks」。

網(wǎng)絡(luò)框架:

17篇注意力機制PyTorch實現(xiàn),包含MLP、Re-Parameter系列熱門論文

代碼:

  1. from attention.ExternalAttention *import* ExternalAttention 
  2. import torch 
  3.  
  4.  
  5. input=torch.randn(50,49,512
  6. ea = ExternalAttention(d_model=512,S=8
  7. output=ea(input) 
  8. print(output.shape) 

 

 

責(zé)任編輯:張燕妮 來源: 機器之心Pro
相關(guān)推薦

2023-07-30 15:42:45

圖神經(jīng)網(wǎng)絡(luò)PyTorch

2024-07-16 14:15:09

2018-08-26 22:25:36

自注意力機制神經(jīng)網(wǎng)絡(luò)算法

2024-04-03 14:31:08

大型語言模型PytorchGQA

2024-09-19 10:07:41

2025-02-19 15:30:00

模型訓(xùn)練數(shù)據(jù)

2024-11-04 10:40:00

AI模型

2025-02-24 13:00:00

YOLOv12目標(biāo)檢測Python

2024-10-31 10:00:39

注意力機制核心組件

2024-06-28 08:04:43

語言模型應(yīng)用

2024-12-09 00:00:10

2020-09-17 12:40:54

神經(jīng)網(wǎng)絡(luò)CNN機器學(xué)習(xí)

2024-08-12 08:40:00

PyTorch代碼

2023-05-05 13:11:16

2024-12-04 09:25:00

2025-02-25 10:21:15

2021-02-02 14:47:58

微軟PyTorch可視化

2025-02-25 09:40:00

模型數(shù)據(jù)AI

2024-12-17 14:39:16

2023-11-24 12:36:00

模型訓(xùn)練
點贊
收藏

51CTO技術(shù)棧公眾號