An Implementation of Compositional Attention that disentagles seearch and retrieval.
Project description
Compositional Attention
This repository is an implementation of Compositional Attention: Disentangling Search and Retrieval by MILA. Revisiting standard Multi-head attention through the lens of multiple parallel and independent search and retrieval mechanisms, this leads to static pairings between searches and retrievals, often leading to redundancy of parameters. They reframe the "heads" of multi-head attention as "searches", and once the multi-headed/searched values are aggregated, there is an extra retrieval step (using attention) off the searched results. The experiments establish this as an easy drop-in replacement for Multi-head attention.
Installation
Run the following to install:
pip install compositional-attention
Developing compositional-attention
To install compositional-attention
, along with tools you need to develop and test, run the following in your virtualenv:
git clone https://github.com/Rishit-dagli/compositional-attention.git
# or clone your own fork
cd compositional-attention
pip install -e .[dev]
Usage
import tensorflow as tf
from compositional_attention import CompositionalAttention
attn = CompositionalAttention(
dim = 1024, # input dimension
dim_head = 64, # dimension per attention 'head' - head is now either search or retrieval
num_searches = 8, # number of searches
num_retrievals = 2, # number of retrievals
dropout = 0.1, # dropout of attention of search and retrieval
)
tokens = tf.random.uniform([1, 512, 1024]) # tokens
mask = tf.ones([1, 512], dtype=tf.dtypes.bool) # mask
out = attn(tokens, mask = mask) # (1, 512, 1024)
Want to Contribute 🙋♂️?
Awesome! If you want to contribute to this project, you're always welcome! See Contributing Guidelines. You can also take a look at open issues for getting more information about current or upcoming tasks.
Want to discuss? 💬
Have any questions, doubts or want to present your opinions, views? You're always welcome. You can start discussions.
Citations
Mittal, Sarthak, et al. ‘Compositional Attention: Disentangling Search and Retrieval’. ArXiv:2110.09419 [Cs], Feb. 2022. arXiv.org, http://arxiv.org/abs/2110.09419.
Official PyTorch implmentation and Phil Wang's PyTorch implmenetation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file compositional-attention-0.1.0.tar.gz
.
File metadata
- Download URL: compositional-attention-0.1.0.tar.gz
- Upload date:
- Size: 8.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 661a400fdd98622c6908e69dcfeeae6990914a515b6a10a44eea400df5c486c6 |
|
MD5 | 431d6e6c40023ca00cb7db63b5bab0b2 |
|
BLAKE2b-256 | a178b095aef5110f68e669833321302ed3aeb9d3f29c05144b52aa51ddf5ae25 |
File details
Details for the file compositional_attention-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: compositional_attention-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd265174da1eef2b48b8c782d1adc17e25db1a787bc45c938f298d2b862f9fcd |
|
MD5 | 3f166b8d3d52efcbe973e5c70bbfd562 |
|
BLAKE2b-256 | ff32a55817ea22ea3d7a0bd4359474fbc2e6d81c45f8af7f9c7ab312e5cbc579 |