pglo commited on
Commit
8a76261
1 Parent(s): c37b11f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +91 -3
README.md CHANGED
@@ -1,3 +1,91 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+ # Model Card for Zamba2-2.7B-instruct
5
+
6
+ Zamba2-2.7B-instruct is obtained from Zamba2-2.7B by fine-tuning on instruction-following and chat datasets.
7
+
8
+ Zamba2-2.7B is a hybrid model composed of state-space and transformer blocks. It broadly follows the [Zamba architecture](https://arxiv.org/abs/2405.16712) which consists of a Mamba backbone alternating with shared transformer blocks (see diagram in [Model Details](#model-details)). Zamba2-2.7B possesses three major improvements over Zamba1:
9
+
10
+ 1.) Mamba1 blocks have been replaced with Mamba2 blocks.
11
+
12
+ 2.) Instead of a single shared attention block, we utilize two shared attention blocks which are interleaved in an ABAB pattern throughout the network.
13
+
14
+ 3.) We apply a LoRA projector to each shared MLP block, which allows the network to specialize the MLPs at each invocation of the shared layer across depth. LoRA enables us to add depth-specialization for only a minimal increase in total parameter count.
15
+
16
+ Zamba2-2.7B 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-2.7B was annealed on a mixture of 100B high-quality tokens.
17
+
18
+ Note: this is a temporary HuggingFace implementation of Zamba2-2.7B. It may not yet be fully compatible with all frameworks and tools intended to interface with HuggingFace models.
19
+
20
+ A standalone Pytorch implementation of Zamba2-2.7B may be found [here](https://github.com/Zyphra/Zamba2).
21
+
22
+ ## Quick start
23
+
24
+ ### Prerequisites
25
+
26
+ To download Zamba2-2.7B-instruct, clone Zyphra's fork of transformers:
27
+ 1. `git clone https://github.com/Zyphra/transformers_zamba2.git`
28
+ 2. `cd transformers_zamba2`
29
+ 3. Install the repository: `pip install -e .`
30
+ 4. `pip install accelerate`
31
+
32
+
33
+ You can run the model without using the optimized Mamba kernels, but it is **not** recommended as it will result in significantly higher latency and memory usage.
34
+
35
+ To run on CPU, please specify `use_mamba_kernels=False` when loading the model using ``AutoModelForCausalLM.from_pretrained``.
36
+
37
+
38
+ ### Inference
39
+
40
+ ```python
41
+ from transformers import AutoTokenizer, AutoModelForCausalLM
42
+ import torch
43
+
44
+ # Instantiate model and tokenizer
45
+ tokenizer = AutoTokenizer.from_pretrained("Zyphra/Zamba2-2.7B-instruct")
46
+ model = AutoModelForCausalLM.from_pretrained("Zyphra/Zamba2-2.7B-instruct", device_map="cuda", torch_dtype=torch.bfloat16)
47
+
48
+ # Format the input as a chat template
49
+ input_string = "In one season a flower blooms three times. In one year, there is one blooming season. How many times do two flowers bloom in two years? Please include your logic."
50
+ first_answer = "In one season, a flower blooms three times. In one year, there is one blooming season. Therefore, in two years, there are two blooming seasons. Since each flower blooms three times in one season, in two blooming seasons, each flower will bloom six times. Since there are two flowers, the total number of times they will bloom in two years is 12."
51
+ second_input = "How many times do the two flowers blossom in three years?"
52
+ sample = [{'role': 'user', 'content': input_string}, {'role': 'assistant', 'content': first_answer}, {'role': 'user', 'content': second_input}]
53
+ chat_sample = tokenizer.apply_chat_template(sample, tokenize=False)
54
+
55
+ # Tokenize input and generate output
56
+ input_ids = tokenizer(chat_sample, return_tensors='pt', padding=True, add_special_tokens=False).to("cuda")
57
+ outputs = model.generate(**input_ids, max_new_tokens=150, return_dict_in_generate=False, output_scores=False, use_cache=True, num_beams=1, do_sample=False)
58
+ print((tokenizer.decode(outputs[0])))
59
+ ```
60
+
61
+ ## Model Details
62
+
63
+ Zamba2-2.7B 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 (one shared attention in Zamba1, two in Zamba2). 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 MLP 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.
64
+
65
+ <center>
66
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/65c05e75c084467acab2f84a/XrEIEBxd0fqIgh3LyArAV.png" width="300" alt="Zamba architecture">
67
+ </center>
68
+
69
+
70
+ ## Performance
71
+
72
+ Zamba2-2.7B achieves leading and state-of-the-art performance among models of <3B parameters and is competitive with some models of significantly greater size. Moreover, due to its unique hybrid SSM architecture, Zamba2-2.7B achieves extremely low inference latency and rapid generation with a significantly smaller memory footprint than comparable transformer based models.
73
+
74
+ Zamba2-2.7B's high performance and small inference compute and memory footprint renders it an ideal generalist model for on-device applications.
75
+
76
+ <center>
77
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/65c05e75c084467acab2f84a/U7VD9PYLj3XcEjgV08sP5.png" width="700" alt="Zamba performance">
78
+ </center>
79
+
80
+ <center>
81
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/65bc13717c6ad1994b6619e9/3u8k7tcRi-oC_ltGhdHAk.png" width="800" alt="Zamba performance">
82
+ </center>
83
+
84
+ Time to First Token (TTFT) | Output Generation
85
+ :-------------------------:|:-------------------------:
86
+ ![](https://cdn-uploads.huggingface.co/production/uploads/65bc13717c6ad1994b6619e9/BmE8X6tDNVw5OJcbZt8sZ.png) | ![](https://cdn-uploads.huggingface.co/production/uploads/65bc13717c6ad1994b6619e9/wECc9cItK1FW1MOMGSLrp.png)
87
+
88
+
89
+ <center>
90
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/65bc13717c6ad1994b6619e9/nhoss41xlzfEBZzcQXI6z.png" width="700" alt="Zamba inference and memory cost">
91
+ </center>