Name | fast-perceiver JSON |
Version |
0.1.7
JSON |
| download |
home_page | |
Summary | Fast and memory efficient PyTorch implementation of the Perceiver with FlashAttention. |
upload_time | 2023-10-04 20:00:16 |
maintainer | |
docs_url | None |
author | Kristian Klemon |
requires_python | >=3.10,<4.0 |
license | |
keywords |
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
fast-perceiver
=========================
Fast and memory efficient PyTorch implementation of the Perceiver [1, 2, 3] architecture with FlashAttention [4, 5] as attention backbone.
**Features:**
* :zap: **More than 2x speedup over naive implementation.**
* :zap: **Sub-linear<sup>1</sup> memory usage with respect to input sequence length and linear usage with respect to number of latent vectors.**
* :zap: **Out-of-the-box support for rotary positional embeddings [6]**
* :zap: **Uses the new and improved FlashAttention-2 implementation**
* :zap: **Supports for multiple inputs and flexible masking**
<sup>1</sup> For the attention components. See [Performance](#performance) for more information.
Installation
------------
**Note:** The `pyproject.toml` has recently been removed from the flash-attn repository and so did the PEP 517 compliance. This means that the flash-attn cannot be declared as dependency for this project anymore and thus needs to be manually until the situation changes in the future:
```bash
pip install flash-attn --no-build-isolation
```
Afterwards, install the actual `fast-perceiver` package:
```bash
pip install fast-perceiver
```
Usage
-----
### Perceiver

```python
import torch
from fast_perceiver import Perceiver, utils
batch_size, seq_len, in_dim = 32, 128, 256
latent_dim = 512
num_latents = 512
out_dim = 128
model = Perceiver(
input_dim=in_dim,
depth=8,
output_dim=out_dim,
num_latents=num_latents,
latent_dim=latent_dim,
cross_heads=1,
cross_head_dim=64,
cross_rotary_emb_dim=0,
cross_attn_dropout=0.0,
latent_heads=8,
latent_head_dim=64,
latent_rotary_emb_dim=0,
latent_attn_dropout=0.0,
weight_tie_layers=False,
gated_mlp=True,
self_per_cross_attn=1,
use_flash_attn=True,
).cuda()
data = torch.randn(batch_size, seq_len, in_dim, device='cuda')
# `out_dim` specified; averages and projects output
# Note: FlashAttention only supports half-precision.
# We need to use `torch.autocast` for the forward-pass
with torch.autocast('cuda'):
out = model(data)
assert out.shape == (32, out_dim)
```
**Multiple inputs**
A separate input for each cross-attention block can be used by providing a list of inputs to the `forward` method. The number of inputs must correspond to the `depth` configuration of the model.
By providing a list of integers to the `input_dim` argument in the constructor, each input can be configured to have a different dimension.
```python
input_dims = [256, 512]
model = Perceiver(
input_dim=input_dims,
depth=2, # must equal len(input_dim)
).cuda()
inputs = [
torch.randn(batch_size, seq_len, in_dim, device='cuda')
for in_dim in input_dims
]
with torch.autocast('cuda'):
out = model(inputs)
assert out.shape == (batch_size, num_latents, latent_dim)
```
**Masking**
A boolean element-wise mask for the input can be provided. All non-True elements will be masked out within the cross-attention operation. If a list of inputs is provided, a list of masks for each input can be provided as well. This can also include `None` values for inputs without a mask.
```python
mask = utils.random_mask(data) # [batch_size, seq_len]
with torch.autocast('cuda'):
out = model(data, mask=mask)
```
**Extract Embeddings**
If a value for `output_dim` has been provided to the constructor, the final latent vectors will be averaged and then projected to the desired dimension. To extract the representations prior to the projecting step, set `return_embeddings=True`:
```python
with torch.autocast('cuda'):
embeds = model(data, return_embeddings=True)
assert embeds.shape == (32, num_latents, latent_dim)
```
**Custom Latents**
For some applications it can be useful to have custom sets of latent vectors. For instance, for a multi-task setting, each task could have a separate set of learned latents.
The `forward` method supports custom latents via the `latents` argument. If not explicitly provided, the module's latent vectors will be used, otherwise the provided ones. These must have shape `[m, latent_dim]` or `[batch_size, n, latent_dim]` where $m$ can be arbitrary.
To disable initializing random latent vectors as part of the model construction, pass `num_latents=None` to the constructor.
**Extract Attention Weights**
`return_attn_weights=True` can be passed to the `forward` method of a model to extract the normalized attention weights of each attention layer. A tuple of `(output, attn_weights)` will be returned in this case, where `attn_weights` is a list with one tensor per attention layer. This list follows the pattern `[cross_attn_0, self_attn_0_0, ..., cross_attn_1, self_attn_1_0]` where attention maps for cross-attention layers will have shape `(batch_size, cross_heads, num_latents, seq_len)` and self-attention maps have shape `(batch_size, latent_heads, num_latents, num_latents)`.
:::warning
:zap: This is an experimental feature and requires a modified implementation of FlashAttention, [unless the changes are eventually merged](https://github.com/Dao-AILab/flash-attention/pull/589).
:::
```python
with torch.autocast('cuda'):
out, all_attn_weights = model(data, return_attn_weights=True)
for i, attn_weights in enumerate(all_attn_weights):
if i % model.num_attention_layers_per_block == 0:
print('cross-attention map with shape', attn_weights.shape)
else:
print('self-attention map with shape', attn_weights.shape)
```
### PerceiverIO
The [PerceiverIO](https://arxiv.org/abs/2107.14795) is a variant of the Perceiver architecture where the encoder tower is followed by a decoder module that allows task specific computation of outputs via sets of queries.
This makes the architecture more flexible and can be used for cases such position specific decoding of values or multi-task settings.

```python
import torch
from fast_perceiver import PerceiverIO, utils
batch_size, seq_len, in_dim = 32, 128, 256
depth = 8
latent_dim = 512
num_latents = 512
query_dim = 128
num_queries = 32
proj_dim = 64
model = PerceiverIO(
input_dim=in_dim,
query_dim=query_dim,
depth=depth,
proj_dim=proj_dim,
num_latents=num_latents,
latent_dim=latent_dim,
cross_heads=1,
cross_head_dim=64,
cross_rotary_emb_dim=0,
cross_attn_dropout=0.0,
latent_heads=8,
latent_head_dim=64,
latent_rotary_emb_dim=0,
latent_attn_dropout=0.0,
query_heads=1,
query_head_dim=64,
query_rotary_emb_dim=0,
query_attn_dropout=0.0,
weight_tie_layers=False,
gated_mlp=True,
use_flash_attn=True,
).cuda()
data = torch.randn(batch_size, seq_len, in_dim, device='cuda')
# Can be learned or correspond to positions, tokens, etc.
queries = torch.randn(num_queries, query_dim, device='cuda')
with torch.autocast('cuda'):
out = model(data, queries=queries)
assert out.shape == (batch_size, num_queries, proj_dim)
```
Examples
--------
Other usage examples are provided in the `examples/` folder.
Performance
-----------
The Perceiver is already designed and intended as an attention architecture with sub-quadratic compute and memory complexity in comparison to the quadratic requirements of a vanilla Transformer.
A naive implementation will have $\mathcal{O}(nm)$ memory usage for the cross-attention modules and $\mathcal{O}(n^2)$ complexity for the self-attention or _latent_ blocks, where $n$ the number of input elements , $m$ the number of latent vectors (fixed hyperparameter) and $n \gg m$ should generally apply.
FlashAttention can reduce the memory usage to $\mathcal{O}(\sqrt{nm})$ for the cross-attention layers and $\mathcal{O}(m)$ for the latent self-attention layers. However, this only accounts for the computation of the attention mechanism. The input sequence and corresponding keys and values within the cross-attention modules will still grow with $n$.
Until the latter starts to dominate memory usage, this implementation allows to greatly scale the input sequence length. For instance, 16x larger input lengths can be achieved in comparison to [perceiver-pytorch](https://github.com/lucidrains/perceiver-pytorch) on a RTX 4090, keeping the other hyperparameters fixed (see `run_benchmarks.py` for the exact configuration).
### Benchmarks
Benchmarks against other implementations (currently only [perceiver-pytorch]([perceiver-pytorch](https://github.com/lucidrains/perceiver-pytorch)) can be performed with:
```bash
python run_benchmarks.py
```
The script will create a `benchmark_results.csv`. The `create_plots.py` script can then be used to create plots.
The following data has been obtained with a RTX 4090 and 24GB of VRAM.


**Note:** The batch size for each configuration corresponds to the smallest value that works for all implementations. Especially for longer sequence lengths, this leads to decreasing GPU utilization and thus a lower speedup than theoretically possible. There are some ways to fix this, but my attempts so far have led to distorted results.
Acknowledgements
----------------
The implementation is inspired by lucidrain's [Perceiver implementation](https://github.com/lucidrains/perceiver-pytorch) and would not have been possible without Tri Dao's [FlashAttention](https://github.com/Dao-AILab/flash-attention).
Planned features
---------------
These are a few features that are either planned or WIP. If you have urgent demand for some of them, feel free to write an issue:
- [X] Perceiver IO [2]
- [ ] Perceiver AR [3] (or an AR demo in general)
- [X] Demos
- [X] Tests (see `tests/`)
- [X] Allow more flexible cross-attention configurations
- [ ] Benchmarks against other Perceiver implementations, e.g. [DeepMind's](https://github.com/deepmind/deepmind-research/tree/master/perceiver) or [Krasser's](https://github.com/krasserm/perceiver-io)
- [ ] If FA2 is eventuelly merged into PyTorch, drop the flash-attn dependency
- [ ] Configure and provide multiple inputs as dict
- [ ] TensorDict / tensorclass inputs
- [X] Extract attention weights
References
----------
[1] Jaegle, Andrew, Felix Gimeno, Andrew Brock, Andrew Zisserman, Oriol Vinyals, and Joao Carreira. “Perceiver: General Perception with Iterative Attention.” arXiv, June 22, 2021. http://arxiv.org/abs/2103.03206.
[2] Jaegle, Andrew, Sebastian Borgeaud, Jean-Baptiste Alayrac, Carl Doersch, Catalin Ionescu, David Ding, Skanda Koppula, et al. “Perceiver IO: A General Architecture for Structured Inputs & Outputs.” arXiv, March 15, 2022. http://arxiv.org/abs/2107.14795.
[3] Hawthorne, Curtis, Andrew Jaegle, Cătălina Cangea, Sebastian Borgeaud, Charlie Nash, Mateusz Malinowski, Sander Dieleman, et al. “General-Purpose, Long-Context Autoregressive Modeling with Perceiver AR.” arXiv, June 14, 2022. http://arxiv.org/abs/2202.07765.
[4] Dao, Tri, Daniel Y. Fu, Stefano Ermon, Atri Rudra, and Christopher Ré. “FlashAttention: Fast and Memory-Efficient Exact Attention with IO-Awareness.” arXiv, June 23, 2022. https://doi.org/10.48550/arXiv.2205.14135.
[5] Dao, Tri. “FlashAttention-2: Faster Attention with Better Parallelism and Work Partitioning.” arXiv, July 17, 2023. https://doi.org/10.48550/arXiv.2307.08691.
[6] Su, Jianlin, Yu Lu, Shengfeng Pan, Ahmed Murtadha, Bo Wen, and Yunfeng Liu. “RoFormer: Enhanced Transformer with Rotary Position Embedding.” arXiv, August 8, 2022. https://doi.org/10.48550/arXiv.2104.09864.
Raw data
{
"_id": null,
"home_page": "",
"name": "fast-perceiver",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.10,<4.0",
"maintainer_email": "",
"keywords": "",
"author": "Kristian Klemon",
"author_email": "kristian.klemon@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/c5/93/1cf6963aeb1b1e0564de1406a9b04798cc642389f202e24a9b813f1a6045/fast_perceiver-0.1.7.tar.gz",
"platform": null,
"description": "fast-perceiver\n=========================\n\nFast and memory efficient PyTorch implementation of the Perceiver [1, 2, 3] architecture with FlashAttention [4, 5] as attention backbone.\n\n**Features:**\n\n* :zap: **More than 2x speedup over naive implementation.**\n* :zap: **Sub-linear<sup>1</sup> memory usage with respect to input sequence length and linear usage with respect to number of latent vectors.**\n* :zap: **Out-of-the-box support for rotary positional embeddings [6]**\n* :zap: **Uses the new and improved FlashAttention-2 implementation**\n* :zap: **Supports for multiple inputs and flexible masking**\n\n<sup>1</sup> For the attention components. See [Performance](#performance) for more information.\n\nInstallation\n------------\n\n**Note:** The `pyproject.toml` has recently been removed from the flash-attn repository and so did the PEP 517 compliance. This means that the flash-attn cannot be declared as dependency for this project anymore and thus needs to be manually until the situation changes in the future:\n\n```bash\npip install flash-attn --no-build-isolation\n```\n\nAfterwards, install the actual `fast-perceiver` package:\n\n\n```bash\npip install fast-perceiver\n```\n\nUsage\n-----\n\n### Perceiver\n\n\n\n```python\nimport torch\n\nfrom fast_perceiver import Perceiver, utils\n\nbatch_size, seq_len, in_dim = 32, 128, 256\n\nlatent_dim = 512\nnum_latents = 512\nout_dim = 128\n\nmodel = Perceiver(\n input_dim=in_dim,\n depth=8,\n output_dim=out_dim,\n num_latents=num_latents,\n latent_dim=latent_dim,\n cross_heads=1,\n cross_head_dim=64,\n cross_rotary_emb_dim=0,\n cross_attn_dropout=0.0,\n latent_heads=8,\n latent_head_dim=64,\n latent_rotary_emb_dim=0,\n latent_attn_dropout=0.0,\n weight_tie_layers=False,\n gated_mlp=True,\n self_per_cross_attn=1,\n use_flash_attn=True,\n).cuda()\n\ndata = torch.randn(batch_size, seq_len, in_dim, device='cuda')\n\n# `out_dim` specified; averages and projects output\n# Note: FlashAttention only supports half-precision.\n# We need to use `torch.autocast` for the forward-pass\nwith torch.autocast('cuda'):\n out = model(data)\n\nassert out.shape == (32, out_dim)\n```\n\n**Multiple inputs**\n\nA separate input for each cross-attention block can be used by providing a list of inputs to the `forward` method. The number of inputs must correspond to the `depth` configuration of the model.\n\nBy providing a list of integers to the `input_dim` argument in the constructor, each input can be configured to have a different dimension.\n\n```python\ninput_dims = [256, 512]\n\nmodel = Perceiver(\n input_dim=input_dims,\n depth=2, # must equal len(input_dim)\n).cuda()\n\ninputs = [\n torch.randn(batch_size, seq_len, in_dim, device='cuda')\n for in_dim in input_dims\n]\n\nwith torch.autocast('cuda'):\n out = model(inputs)\n\nassert out.shape == (batch_size, num_latents, latent_dim)\n```\n\n**Masking**\n\nA boolean element-wise mask for the input can be provided. All non-True elements will be masked out within the cross-attention operation. If a list of inputs is provided, a list of masks for each input can be provided as well. This can also include `None` values for inputs without a mask.\n\n```python\nmask = utils.random_mask(data) # [batch_size, seq_len]\n\nwith torch.autocast('cuda'):\n out = model(data, mask=mask)\n```\n\n**Extract Embeddings**\n\nIf a value for `output_dim` has been provided to the constructor, the final latent vectors will be averaged and then projected to the desired dimension. To extract the representations prior to the projecting step, set `return_embeddings=True`:\n\n```python\nwith torch.autocast('cuda'):\n embeds = model(data, return_embeddings=True)\n\nassert embeds.shape == (32, num_latents, latent_dim)\n```\n\n**Custom Latents**\n\nFor some applications it can be useful to have custom sets of latent vectors. For instance, for a multi-task setting, each task could have a separate set of learned latents.\n\nThe `forward` method supports custom latents via the `latents` argument. If not explicitly provided, the module's latent vectors will be used, otherwise the provided ones. These must have shape `[m, latent_dim]` or `[batch_size, n, latent_dim]` where $m$ can be arbitrary.\n\nTo disable initializing random latent vectors as part of the model construction, pass `num_latents=None` to the constructor.\n\n**Extract Attention Weights**\n\n`return_attn_weights=True` can be passed to the `forward` method of a model to extract the normalized attention weights of each attention layer. A tuple of `(output, attn_weights)` will be returned in this case, where `attn_weights` is a list with one tensor per attention layer. This list follows the pattern `[cross_attn_0, self_attn_0_0, ..., cross_attn_1, self_attn_1_0]` where attention maps for cross-attention layers will have shape `(batch_size, cross_heads, num_latents, seq_len)` and self-attention maps have shape `(batch_size, latent_heads, num_latents, num_latents)`.\n\n:::warning\n:zap: This is an experimental feature and requires a modified implementation of FlashAttention, [unless the changes are eventually merged](https://github.com/Dao-AILab/flash-attention/pull/589).\n:::\n\n```python\nwith torch.autocast('cuda'):\n out, all_attn_weights = model(data, return_attn_weights=True)\n\nfor i, attn_weights in enumerate(all_attn_weights):\n if i % model.num_attention_layers_per_block == 0:\n print('cross-attention map with shape', attn_weights.shape)\n else:\n print('self-attention map with shape', attn_weights.shape)\n\n```\n\n\n### PerceiverIO\n\nThe [PerceiverIO](https://arxiv.org/abs/2107.14795) is a variant of the Perceiver architecture where the encoder tower is followed by a decoder module that allows task specific computation of outputs via sets of queries.\n\nThis makes the architecture more flexible and can be used for cases such position specific decoding of values or multi-task settings.\n\n\n\n```python\nimport torch\n\nfrom fast_perceiver import PerceiverIO, utils\n\nbatch_size, seq_len, in_dim = 32, 128, 256\n\ndepth = 8\nlatent_dim = 512\nnum_latents = 512\nquery_dim = 128\nnum_queries = 32\nproj_dim = 64\n\nmodel = PerceiverIO(\n input_dim=in_dim,\n query_dim=query_dim,\n depth=depth,\n proj_dim=proj_dim,\n num_latents=num_latents,\n latent_dim=latent_dim,\n cross_heads=1,\n cross_head_dim=64,\n cross_rotary_emb_dim=0,\n cross_attn_dropout=0.0,\n latent_heads=8,\n latent_head_dim=64,\n latent_rotary_emb_dim=0,\n latent_attn_dropout=0.0,\n query_heads=1,\n query_head_dim=64,\n query_rotary_emb_dim=0,\n query_attn_dropout=0.0,\n weight_tie_layers=False,\n gated_mlp=True,\n use_flash_attn=True,\n).cuda()\n\ndata = torch.randn(batch_size, seq_len, in_dim, device='cuda')\n\n# Can be learned or correspond to positions, tokens, etc.\nqueries = torch.randn(num_queries, query_dim, device='cuda')\n\nwith torch.autocast('cuda'):\n out = model(data, queries=queries)\n\nassert out.shape == (batch_size, num_queries, proj_dim)\n```\n\nExamples\n--------\n\nOther usage examples are provided in the `examples/` folder.\n\nPerformance\n-----------\n\nThe Perceiver is already designed and intended as an attention architecture with sub-quadratic compute and memory complexity in comparison to the quadratic requirements of a vanilla Transformer.\n\nA naive implementation will have $\\mathcal{O}(nm)$ memory usage for the cross-attention modules and $\\mathcal{O}(n^2)$ complexity for the self-attention or _latent_ blocks, where $n$ the number of input elements , $m$ the number of latent vectors (fixed hyperparameter) and $n \\gg m$ should generally apply.\n\nFlashAttention can reduce the memory usage to $\\mathcal{O}(\\sqrt{nm})$ for the cross-attention layers and $\\mathcal{O}(m)$ for the latent self-attention layers. However, this only accounts for the computation of the attention mechanism. The input sequence and corresponding keys and values within the cross-attention modules will still grow with $n$.\n\nUntil the latter starts to dominate memory usage, this implementation allows to greatly scale the input sequence length. For instance, 16x larger input lengths can be achieved in comparison to [perceiver-pytorch](https://github.com/lucidrains/perceiver-pytorch) on a RTX 4090, keeping the other hyperparameters fixed (see `run_benchmarks.py` for the exact configuration).\n\n### Benchmarks\n\nBenchmarks against other implementations (currently only [perceiver-pytorch]([perceiver-pytorch](https://github.com/lucidrains/perceiver-pytorch)) can be performed with:\n\n```bash\npython run_benchmarks.py\n```\n\nThe script will create a `benchmark_results.csv`. The `create_plots.py` script can then be used to create plots.\n\nThe following data has been obtained with a RTX 4090 and 24GB of VRAM.\n\n\n\n\n\n**Note:** The batch size for each configuration corresponds to the smallest value that works for all implementations. Especially for longer sequence lengths, this leads to decreasing GPU utilization and thus a lower speedup than theoretically possible. There are some ways to fix this, but my attempts so far have led to distorted results.\n\nAcknowledgements\n----------------\n\nThe implementation is inspired by lucidrain's [Perceiver implementation](https://github.com/lucidrains/perceiver-pytorch) and would not have been possible without Tri Dao's [FlashAttention](https://github.com/Dao-AILab/flash-attention).\n\nPlanned features\n---------------\n\nThese are a few features that are either planned or WIP. If you have urgent demand for some of them, feel free to write an issue:\n\n- [X] Perceiver IO [2]\n- [ ] Perceiver AR [3] (or an AR demo in general)\n- [X] Demos\n- [X] Tests (see `tests/`)\n- [X] Allow more flexible cross-attention configurations\n- [ ] Benchmarks against other Perceiver implementations, e.g. [DeepMind's](https://github.com/deepmind/deepmind-research/tree/master/perceiver) or [Krasser's](https://github.com/krasserm/perceiver-io)\n- [ ] If FA2 is eventuelly merged into PyTorch, drop the flash-attn dependency\n- [ ] Configure and provide multiple inputs as dict\n- [ ] TensorDict / tensorclass inputs\n- [X] Extract attention weights\n\nReferences\n----------\n\n[1] Jaegle, Andrew, Felix Gimeno, Andrew Brock, Andrew Zisserman, Oriol Vinyals, and Joao Carreira. \u201cPerceiver: General Perception with Iterative Attention.\u201d arXiv, June 22, 2021. http://arxiv.org/abs/2103.03206.\n\n[2] Jaegle, Andrew, Sebastian Borgeaud, Jean-Baptiste Alayrac, Carl Doersch, Catalin Ionescu, David Ding, Skanda Koppula, et al. \u201cPerceiver IO: A General Architecture for Structured Inputs & Outputs.\u201d arXiv, March 15, 2022. http://arxiv.org/abs/2107.14795.\n\n[3] Hawthorne, Curtis, Andrew Jaegle, C\u0103t\u0103lina Cangea, Sebastian Borgeaud, Charlie Nash, Mateusz Malinowski, Sander Dieleman, et al. \u201cGeneral-Purpose, Long-Context Autoregressive Modeling with Perceiver AR.\u201d arXiv, June 14, 2022. http://arxiv.org/abs/2202.07765.\n\n[4] Dao, Tri, Daniel Y. Fu, Stefano Ermon, Atri Rudra, and Christopher R\u00e9. \u201cFlashAttention: Fast and Memory-Efficient Exact Attention with IO-Awareness.\u201d arXiv, June 23, 2022. https://doi.org/10.48550/arXiv.2205.14135.\n\n[5] Dao, Tri. \u201cFlashAttention-2: Faster Attention with Better Parallelism and Work Partitioning.\u201d arXiv, July 17, 2023. https://doi.org/10.48550/arXiv.2307.08691.\n\n[6] Su, Jianlin, Yu Lu, Shengfeng Pan, Ahmed Murtadha, Bo Wen, and Yunfeng Liu. \u201cRoFormer: Enhanced Transformer with Rotary Position Embedding.\u201d arXiv, August 8, 2022. https://doi.org/10.48550/arXiv.2104.09864.\n",
"bugtrack_url": null,
"license": "",
"summary": "Fast and memory efficient PyTorch implementation of the Perceiver with FlashAttention.",
"version": "0.1.7",
"project_urls": null,
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "cc75efea019f4f643368824147cb2095271790c375d0e7f73df461e62eb24d46",
"md5": "477febbaad913890ff0242ed09562741",
"sha256": "70963f2a27d2be45f293f0de5f49edc69ec5c85239b0b31a4783635a8e15c3b1"
},
"downloads": -1,
"filename": "fast_perceiver-0.1.7-py3-none-any.whl",
"has_sig": false,
"md5_digest": "477febbaad913890ff0242ed09562741",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10,<4.0",
"size": 14888,
"upload_time": "2023-10-04T20:00:13",
"upload_time_iso_8601": "2023-10-04T20:00:13.860729Z",
"url": "https://files.pythonhosted.org/packages/cc/75/efea019f4f643368824147cb2095271790c375d0e7f73df461e62eb24d46/fast_perceiver-0.1.7-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5931cf6963aeb1b1e0564de1406a9b04798cc642389f202e24a9b813f1a6045",
"md5": "7f94043a2e3c0f5eeea8c049daaeb82f",
"sha256": "327960468eaa44abcab9c685c08f274cc1e40c97a00400a359e3c868a4acb66b"
},
"downloads": -1,
"filename": "fast_perceiver-0.1.7.tar.gz",
"has_sig": false,
"md5_digest": "7f94043a2e3c0f5eeea8c049daaeb82f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10,<4.0",
"size": 17014,
"upload_time": "2023-10-04T20:00:16",
"upload_time_iso_8601": "2023-10-04T20:00:16.182408Z",
"url": "https://files.pythonhosted.org/packages/c5/93/1cf6963aeb1b1e0564de1406a9b04798cc642389f202e24a9b813f1a6045/fast_perceiver-0.1.7.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-10-04 20:00:16",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "fast-perceiver"
}