Transformers
PyTorch
Inference Endpoints
qanthony-z commited on
Commit
36c5eb1
1 Parent(s): f2abccd

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -1
README.md CHANGED
@@ -1,4 +1,18 @@
1
  ---
2
  license: apache-2.0
3
  ---
4
- [BlackMamba](https://www.zyphra.com/blackmamba) is an novel architecture which combines state-space models (SSMs) with mixture of experts (MoE). It uses [Mamba](https://arxiv.org/abs/2312.00752) as its SSM block and [switch transformer](https://arxiv.org/abs/2101.03961) as its MoE block base. BlackMamba is extremely low latency for generation and inference, providing significant speedups over all of classical transformers, MoEs, and Mamba SSM models. Additionally, due to its SSM sequence mixer, BlackMamba retains linear compuational complexity in the sequence length.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ # BlackMamba
6
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/65bc13717c6ad1994b6619e9/JdxNtwFrmEAnjJ0_MP5A3.jpeg" width="900" height="900" />
7
+
8
+
9
+ > **BlackMamba: Mixture of Experts for State-space models**\
10
+ > Quentin Anthony*, Yury Tokpanov*, Paolo Glorioso*, Beren Millidge*\
11
+ > Paper: https://www.zyphra.com/blackmamba
12
+
13
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/65bc13717c6ad1994b6619e9/aHpEc5tnCJShO2Kn0f637.png" width="900" height="900" />
14
+
15
+ ## About
16
+ We provide inference and generation code for our BlackMamba model in our github repository: https://github.com/Zyphra/BlackMamba
17
+
18
+ BlackMamba is an novel architecture which combines state-space models (SSMs) with mixture of experts (MoE). It uses [Mamba](https://arxiv.org/abs/2312.00752) as its SSM block and [switch transformer](https://arxiv.org/abs/2101.03961) as its MoE block base. BlackMamba is extremely low latency for generation and inference, providing significant speedups over all of classical transformers, MoEs, and Mamba SSM models. Additionally, due to its SSM sequence mixer, BlackMamba retains linear compuational complexity in the sequence length.