PEER - Pytorch
Project description
PEER - Pytorch
Pytorch implementation of the PEER block from the Deepmind paper, Mixture of A Million Experts, by Xu Owen He.
Install
$ pip install PEER-pytorch
Usage
import torch
from PEER_pytorch import PEER
peer = PEER(
dim = 512,
heads = 8, # tested up to 32 - (hk = heads * num_experts_per_head (16))
num_experts = 1_000_000, # he chose 1 million
num_experts_per_head = 16, # he settled on 16, but was 32 in PKM paper
dim_key = 128,
).cuda()
x = torch.randn(2, 1024, 512).cuda()
out = peer(x)
assert x.shape == out.shape
Citations
@inproceedings{He2024MixtureOA,
title = {Mixture of A Million Experts},
author = {Xu Owen He},
year = {2024},
url = {https://api.semanticscholar.org/CorpusID:271038610}
}
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
peer_pytorch-0.0.2.tar.gz
(97.9 kB
view details)
Built Distribution
File details
Details for the file peer_pytorch-0.0.2.tar.gz
.
File metadata
- Download URL: peer_pytorch-0.0.2.tar.gz
- Upload date:
- Size: 97.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd989253d67b3221cedf4bfe2fb92b6c2b283212eb6ebfa74172e88e02f11eb2 |
|
MD5 | adab2394ae06794d69b48838044fb0ae |
|
BLAKE2b-256 | 55a01b11c55ae038f7e8926597b97fa30acd0a6f750798d56336a21175d9f1b7 |
File details
Details for the file peer_pytorch-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: peer_pytorch-0.0.2-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7109c2dab17a11f6ba3dad19053b0a2fc4d1c0d6b6991785b14f84cfd4a68cc1 |
|
MD5 | 98ba44b48f62e3983079bc460cc01bec |
|
BLAKE2b-256 | 15b3cb2bfaad24100794c8f3a00361a841a783136daab5d4fc410d042f5db1c6 |