BerenMillidge
commited on
Commit
•
a59589a
1
Parent(s):
dc811fc
Update README.md
Browse files
README.md
CHANGED
@@ -7,29 +7,7 @@ license: apache-2.0
|
|
7 |
|
8 |
Zamba2-1.2B-instruct is obtained from Zamba2-1.2B by fine-tuning on instruction-following and chat datasets.
|
9 |
|
10 |
-
Zamba2-1.2B is a hybrid model composed of state-space
|
11 |
-
|
12 |
-
1.) Mamba1 blocks have been replaced with Mamba2 blocks.
|
13 |
-
|
14 |
-
2.) We apply a LoRA projector to each shared MLP and attention block, which allows the network to specialize at each invocation of the shared transformer layer across depth. LoRA enables us to add depth-specialization for only a minimal increase in total parameter count.
|
15 |
-
|
16 |
-
3.) We utilize rotary position embeddings in the shared attention layer.
|
17 |
-
|
18 |
-
Zamba2-1.2B differs from our [2.7B model](https://huggingface.co/Zyphra/Zamba2-2.7B) in three ways:
|
19 |
-
|
20 |
-
1.) We have added rotary position embeddings
|
21 |
-
|
22 |
-
2.) A single shared transformer block (instead of two that we alternate between)
|
23 |
-
|
24 |
-
3.) Added LoRA projectors to attention blocks (instead of just a LoRA on the MLP block)
|
25 |
-
|
26 |
-
We found that while hybrid SSM-transformer models are perfectly capable of performing well without position embeddings, adding rotary embeddings to the shared attention block slightly improved performance. Secondly, we utilize a single attention block (instead of alternating between two independent transformer blocks) because this enables a higher flop count for the model at a given parameter budget and at smaller scales this becomes more important than the slightly faster latency.
|
27 |
-
|
28 |
-
Zamba2-1.2B uses the Mistral v0.1 tokenizer and was pre-trained on 3T tokens of text and code data sourced from open web-datasets, including [Zyda](https://arxiv.org/abs/2406.01981). Subsequently, in a second phase, Zamba2-1.2B was annealed on a mixture of 100B high-quality tokens.
|
29 |
-
|
30 |
-
Note: this is a temporary HuggingFace implementation of Zamba2-1.2B. It may not yet be fully compatible with all frameworks and tools intended to interface with HuggingFace models.
|
31 |
-
|
32 |
-
A standalone Pytorch implementation of Zamba2-1.2B may be found [here](https://github.com/Zyphra/Zamba2).
|
33 |
|
34 |
## Quick start
|
35 |
|
@@ -70,14 +48,6 @@ outputs = model.generate(**input_ids, max_new_tokens=150, return_dict_in_generat
|
|
70 |
print((tokenizer.decode(outputs[0])))
|
71 |
```
|
72 |
|
73 |
-
## Model Details
|
74 |
-
|
75 |
-
Zamba2-1.2B utilizes and extends our original Zamba hybrid SSM-attention architecture. The core Zamba architecture consists of a backbone of Mamba layers interleaved with one or more shared attention layers. This attention has shared weights to minimize the parameter cost of the model. We find that concatenating the original model embeddings to the input to this attention block improves performance, likely due to better maintenance of information across depth. The Zamba2 architecture also applies LoRA projection matrices to the shared transformer blocks to gain some additional expressivity in each block and allow each shared block to specialize slightly to its own unique position while keeping the additional parameter overhead small.
|
76 |
-
|
77 |
-
<center>
|
78 |
-
<img src="https://cdn-uploads.huggingface.co/production/uploads/65c05e75c084467acab2f84a/Vay6htbnBcySR3Z6NEgwj.png" width="300" alt="Zamba architecture">
|
79 |
-
</center>
|
80 |
-
|
81 |
## Performance
|
82 |
|
83 |
Zamba2-1.2B achieves leading and state-of-the-art performance among models of <2B parameters and is competitive with some models of significantly greater size. Moreover, due to its unique hybrid SSM architecture, Zamba2-1.2B achieves extremely low inference latency and rapid generation with a significantly smaller memory footprint than comparable transformer based models.
|
@@ -102,3 +72,18 @@ And memory overhead
|
|
102 |
<center>
|
103 |
<img src="https://cdn-uploads.huggingface.co/production/uploads/65c05e75c084467acab2f84a/m0YUmAmiVnRg6l9m10CEt.png" width="400" alt="Zamba inference and memory cost">
|
104 |
</center>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
Zamba2-1.2B-instruct is obtained from Zamba2-1.2B by fine-tuning on instruction-following and chat datasets.
|
9 |
|
10 |
+
Zamba2-1.2B-Instruct is a hybrid model composed of state-space and transformer blocks. It is based on the [Zamba2-1.2B](https://huggingface.co/Zyphra/Zamba2-1.2B) architecture.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
|
12 |
## Quick start
|
13 |
|
|
|
48 |
print((tokenizer.decode(outputs[0])))
|
49 |
```
|
50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
## Performance
|
52 |
|
53 |
Zamba2-1.2B achieves leading and state-of-the-art performance among models of <2B parameters and is competitive with some models of significantly greater size. Moreover, due to its unique hybrid SSM architecture, Zamba2-1.2B achieves extremely low inference latency and rapid generation with a significantly smaller memory footprint than comparable transformer based models.
|
|
|
72 |
<center>
|
73 |
<img src="https://cdn-uploads.huggingface.co/production/uploads/65c05e75c084467acab2f84a/m0YUmAmiVnRg6l9m10CEt.png" width="400" alt="Zamba inference and memory cost">
|
74 |
</center>
|
75 |
+
|
76 |
+
|
77 |
+
|
78 |
+
## Model Details
|
79 |
+
|
80 |
+
Zamba2-1.2B utilizes and extends our original Zamba hybrid SSM-attention architecture. The core Zamba architecture consists of a backbone of Mamba layers interleaved with one or more shared attention layers. This attention has shared weights to minimize the parameter cost of the model. We find that concatenating the original model embeddings to the input to this attention block improves performance, likely due to better maintenance of information across depth. The Zamba2 architecture also applies LoRA projection matrices to the shared transformer blocks to gain some additional expressivity in each block and allow each shared block to specialize slightly to its own unique position while keeping the additional parameter overhead small.
|
81 |
+
|
82 |
+
<center>
|
83 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/65c05e75c084467acab2f84a/Vay6htbnBcySR3Z6NEgwj.png" width="300" alt="Zamba architecture">
|
84 |
+
</center>
|
85 |
+
|
86 |
+
|
87 |
+
Note: this is a temporary HuggingFace implementation of Zamba2-1.2B. It may not yet be fully compatible with all frameworks and tools intended to interface with HuggingFace models.
|
88 |
+
|
89 |
+
A standalone Pytorch implementation of Zamba2-1.2B may be found [here](https://github.com/Zyphra/Zamba2).
|