An implementation of Fastformer: Additive Attention Can Be All You Need in TensorFlow
Project description
Fast Transformer
This repo implements Fastformer: Additive Attention Can Be All You Need by Wu et al. in TensorFlow. Fast Transformer is a Transformer variant based on additive attention that can handle long sequences efficiently with linear complexity. Fastformer is much more efficient than many existing Transformer models and can meanwhile achieve comparable or even better long text modeling performance.
Installation
Run the following to install:
pip install fast-transformer
Developing fast-transformer
To install fast-transformer
, along with tools you need to develop and test, run the following in your virtualenv:
git clone https://github.com/Rishit-dagli/Fast-Transformer.git
# or clone your own fork
cd fast-transformer
pip install -e .[dev]
To run rank and shape tests run the following:
python -m fast_transformer.test_fast_transformer
Usage
import tensorflow as tf
from fast_transformer import FastTransformer
mask = tf.ones([1, 4096], dtype=tf.bool)
model = FastTransformer(
num_tokens = 20000,
dim = 512,
depth = 2,
max_seq_len = 4096,
absolute_pos_emb = True, # Absolute positional embeddings
mask = mask
)
x = tf.experimental.numpy.random.randint(0, 20000, (1, 4096))
logits = model(x) # (1, 4096, 20000)
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.
Citation
@misc{wu2021fastformer,
title = {Fastformer: Additive Attention is All You Need},
author = {Chuhan Wu and Fangzhao Wu and Tao Qi and Yongfeng Huang},
year = {2021},
eprint = {2108.09084},
archivePrefix = {arXiv},
primaryClass = {cs.CL}
}
Yannic Kilcher's video was super helpful while building this.
License
Copyright 2020 Rishit Dagli
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
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 fast-transformer-0.2.0.tar.gz
.
File metadata
- Download URL: fast-transformer-0.2.0.tar.gz
- Upload date:
- Size: 10.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 602c4e50e6ec217282a347781f837872c1a469afd1c1b85b939eb25d36c17ba5 |
|
MD5 | 67c7c36efad3e5bdf8f3614fa39dae7f |
|
BLAKE2b-256 | 86e4680a55f4ca69eb6aaba1e5645b247ff916f8022a2dfd15dd016c45e32769 |
File details
Details for the file fast_transformer-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: fast_transformer-0.2.0-py3-none-any.whl
- Upload date:
- Size: 11.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1792433ac48338a30c40500e49e17fc99e4d4254192cdf5c7a3085f0f67e448c |
|
MD5 | afa0166d9b017af72804947971d4dd23 |
|
BLAKE2b-256 | 52d06d460d27ba758bb0dd11a5d732b63470a82d5eac1bf6dd7ec17613599d5d |