Skip to content

Commit

Permalink
remove pytorch-fast-transformers from dep
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Apr 21, 2021
1 parent e40abb6 commit 457dade
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ An implementation of <a href="https://arxiv.org/abs/2009.14794">Performer</a>, a
$ pip install performer-pytorch
```

Then you must run the following, if you plan on training an autoregressive model

```bash
$ pip install -r requirements.txt
```

## Usage

Performer Language Model
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pytorch-fast-transformers>=0.3.0
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name = 'performer-pytorch',
packages = find_packages(exclude=['examples']),
version = '1.0.10',
version = '1.0.11',
license='MIT',
description = 'Performer - Pytorch',
author = 'Phil Wang',
Expand All @@ -18,7 +18,6 @@
install_requires=[
'einops>=0.3',
'local-attention>=1.1.1',
'pytorch-fast-transformers>=0.3.0',
'torch>=1.6',
'axial-positional-embedding>=0.1.0'
],
Expand Down

0 comments on commit 457dade

Please sign in to comment.