Update README.md

#1
by ariG23498 HF staff - opened
Files changed (1) hide show
  1. README.md +295 -1
README.md CHANGED
@@ -1,5 +1,299 @@
1
  ---
2
  license: apache-2.0
 
 
 
3
  ---
4
 
5
- Please refer to the model card of [ibm-fms/Bamba-9B](https://huggingface.co/ibm-fms/Bamba-9B)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ library_name: transformers
4
+ tags:
5
+ - bamba
6
  ---
7
 
8
+ ## Model Details
9
+ <p align="center">
10
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/64b6c638ac6d20bae0b93219/GOzs8o4G1apceun92ZC4d.png" alt="Bamba" width="400" height="400">
11
+ </p>
12
+
13
+ # Model Card for Bamba 9B 1.8T FP8
14
+ We introduce Bamba-9B, a decoder-only language model based on the [Mamba-2](https://github.com/state-spaces/mamba) architecture and is designed to handle a wide range of text generation tasks. It is trained from scratch using a two-stage training approach. In the first stage, the model is trained on 2 trillion tokens from the Dolma v1.7 dataset. In the second stage, it undergoes additional training on 200 billion tokens, leveraging a carefully curated blend of high-quality data to further refine its performance and enhance output quality.
15
+
16
+ | Model | Params | # Layers | Hidden Dim. | Attention Heads | GQA | KV Heads | Context Length | Tied Embeddings |
17
+ | ----- | ---------- | -------- | ----------- | --------------- | ---- | -------- | -------------- | --------------- |
18
+ | Bamba | 9B (9.78B) | 32 | 4096 | 32 | Yes | 8 | 4096 | False |
19
+
20
+
21
+ The current release includes the following models:
22
+ | **Stage** | **Bamba 9B** | **Quantized** | **Note** |
23
+ |----------------------|----------------------------------------------------------------------|-------------------------------------------------------------------------|-------------------------------------------------------------------|
24
+ | **Base Model** | [ibm-fms/Bamba-9B](https://huggingface.co/ibm-fms/Bamba-9B) | [ibm-fms/Bamba-9B-fp8](https://huggingface.co/ibm-fms/Bamba-9B-fp8) | Stage 2 pretraining |
25
+ | **Base Model** | [ibm-fms/Bamba-9B-2T](https://huggingface.co/ibm-fms/Bamba-9B-2T) | [ibm-fms/Bamba-9B-fp8](https://huggingface.co/ibm-fms/Bamba-9B-fp8) | Stage 1 pretraining |
26
+ | **Base Model** | [ibm-fms/Bamba-9B-1.8T](https://huggingface.co/ibm-fms/Bamba-9B-1.8T)| [ibm-fms/Bamba-9B-fp8](https://huggingface.co/ibm-fms/Bamba-9B-fp8) | Intermediate checkpoints during Stage 1, more to come |
27
+ | **SFT** | coming soon | coming soon | to be released in the next drop |
28
+ | **DPO** | coming soon | coming soon | to be released in the next drop |
29
+
30
+ ## Installation
31
+
32
+ Besides [PyTorch](https://pytorch.org/), you would need a few [extra dependencies](https://github.com/state-spaces/mamba?tab=readme-ov-file#installation) for
33
+ Mamba models.
34
+
35
+ We found some of these dependencies picky on PyTorch versions when doing pip install, so
36
+ the best way is to build from source for all Mamba dependencies if you hit dependency
37
+ issue with your env:
38
+ ```bash
39
+ git clone https://github.com/Dao-AILab/causal-conv1d.git
40
+ cd causal-conv1d && pip install . && cd ..
41
+ git clone https://github.com/state-spaces/mamba.git
42
+ cd mamba && pip install . && cd ..
43
+ git clone https://github.com/Dao-AILab/flash-attention.git
44
+ cd flash-attention && pip install . && cd ..
45
+ ```
46
+
47
+ For users using our HF versions of the model, you would need to install the latest transformers which includes our newly merged implementation for our Bamba models:
48
+ ```bash
49
+ pip install git+https://github.com/huggingface/transformers.git
50
+ ```
51
+
52
+ ## Inference
53
+ You can utilize our newly contributed HF integration to run inference on our Bamba models:
54
+ ```python
55
+ from transformers import AutoModelForCausalLM, AutoTokenizer
56
+
57
+ model = AutoModelForCausalLM.from_pretrained("ibm-fms/Bamba-9B-1.8T-fp8")
58
+ tokenizer = AutoTokenizer.from_pretrained("ibm-fms/Bamba-9B-1.8T-fp8")
59
+
60
+ message = ["Mamba is a snake with following properties "]
61
+ inputs = tokenizer(message, return_tensors='pt', return_token_type_ids=False)
62
+ response = model.generate(**inputs, max_new_tokens=64)
63
+ print(tokenizer.batch_decode(response, skip_special_tokens=True)[0])
64
+
65
+ ```
66
+
67
+
68
+ ## Training
69
+
70
+ We trained our Bamba model with FSDP using our training repo [here](https://github.com/foundation-model-stack/fms-fsdp).
71
+ Note that this training effort was started before FSDP2 and also long before we contributed
72
+ `Mamba2-Hybrid` to HF, so we were doing FSDP1 training with [official Mamba implementation](https://github.com/state-spaces/mamba).
73
+ For users trying to reproduce the training you now have much more options with our newly
74
+ contributed [HF-version of Mamba2-Hybrid](https://github.com/huggingface/transformers/tree/main/src/transformers/models/bamba).
75
+
76
+
77
+ ## Benchmark scores
78
+
79
+ ### Base pretrained models
80
+
81
+ <table>
82
+ <tr>
83
+ <td><strong>Category</strong>
84
+ </td>
85
+ <td><strong>Benchmark</strong>
86
+ </td>
87
+ <td><strong>Bamba 9B (2.2T)</strong>
88
+ </td>
89
+ </tr>
90
+ <tr>
91
+ <td rowspan="8" >General
92
+ </td>
93
+ <td>MMLU (5-shot)
94
+ </td>
95
+ <td>60.77
96
+ </td>
97
+ </tr>
98
+ <tr>
99
+ <td>ARC-C (25-shot)
100
+ </td>
101
+ <td>63.23
102
+ </td>
103
+ </tr>
104
+ <tr>
105
+ <td>GSM8K (5-shot)
106
+ </td>
107
+ <td>36.77
108
+ </td>
109
+ </tr>
110
+ <tr>
111
+ <td>Hellaswag (10-shot)
112
+ </td>
113
+ <td>81.8
114
+ </td>
115
+ </tr>
116
+ <tr>
117
+ <td>OpenbookQA (5-shot)
118
+ </td>
119
+ <td>47.6
120
+ </td>
121
+ </tr>
122
+ <tr>
123
+ <td>Piqa (5-shot)
124
+ </td>
125
+ <td>82.26
126
+ </td>
127
+ </tr>
128
+ <tr>
129
+ <td>TruthfulQA (0-shot)
130
+ </td>
131
+ <td>49.21
132
+ </td>
133
+ </tr>
134
+ <tr>
135
+ <td>Winogrande (5-shot)
136
+ </td>
137
+ <td>76.87
138
+ </td>
139
+ </tr>
140
+ <tr>
141
+ <td rowspan="6" >HF OpenLLM- V2*
142
+ </td>
143
+ <td>MMLU-PRO (5-shot)
144
+ </td>
145
+ <td>17.53
146
+ </td>
147
+ </tr>
148
+ <tr>
149
+ <td>BBH (3-shot)
150
+ </td>
151
+ <td>17.4
152
+ </td>
153
+ </tr>
154
+ <tr>
155
+ <td>GPQA (0-shot)
156
+ </td>
157
+ <td>4.14
158
+ </td>
159
+ </tr>
160
+ <tr>
161
+ <td>IFEval (0-shot)
162
+ </td>
163
+ <td>15.16
164
+ </td>
165
+ </tr>
166
+ <tr>
167
+ <td>MATH Lvl 5 (4-shot)
168
+ </td>
169
+ <td>1.66
170
+ </td>
171
+ </tr>
172
+ <tr>
173
+ <td>MuSR (0-shot)
174
+ </td>
175
+ <td>9.59
176
+ </td>
177
+ </tr>
178
+ <tr>
179
+ <td rowspan="4" >Safety Tasks
180
+ </td>
181
+ <td>PopQA (5-shot)
182
+ </td>
183
+ <td>20.5
184
+ </td>
185
+ </tr>
186
+ <tr>
187
+ <td>Toxigen (5-shot)
188
+ </td>
189
+ <td>57.4
190
+ </td>
191
+ </tr>
192
+ <tr>
193
+ <td>BBQ (5-shot)
194
+ </td>
195
+ <td>44.2
196
+ </td>
197
+ </tr>
198
+ <tr>
199
+ <td>Crows-pairs english (5-shot)
200
+ </td>
201
+ <td>70.78
202
+ </td>
203
+ </tr>
204
+ </table>
205
+
206
+ *For the v2 leaderboard results, we perform [normalization](https://huggingface.co/docs/leaderboards/open_llm_leaderboard/normalization) and report the normalized results.
207
+ Further details on our evaluation and normalization detailes along with run and analysis scripts can be found [here](https://github.com/foundation-model-stack/bamba/blob/main/evaluation/README.md).
208
+
209
+
210
+
211
+ ## Fine-tuning
212
+
213
+ This [example](https://github.com/foundation-model-stack/bamba/blob/main/tuning/Fine-tuning.md) shows how to fine tune the bamba model for a specific task using [SFT Trainer](https://huggingface.co/docs/trl/en/sft_trainer#supervised-fine-tuning-trainer).
214
+
215
+
216
+ ## Quantization
217
+ We can create a (FP8) quantized model using [`fms-model-optimizer`](https://github.com/foundation-model-stack/fms-model-optimizer/), which will make the storage and inference even more efficient.
218
+ ```python
219
+ python -m fms_mo.run_quant \
220
+ --model_name_or_path <"path_to_original_model"> \
221
+ --quant_method fp8 \
222
+ --torch_dtype bfloat16 \
223
+ --output_dir <"path_to_save_new_model">
224
+ ```
225
+ Model size comparison before and after FP8:
226
+ | | original | quantized |
227
+ | :-----------------: | -----------------------: | -----------------------------------------------------------: |
228
+ | memory (total) | 39.12 GB | 10.83 GB |
229
+ | memory (break-down) | `torch.float32` 39.12 GB | `torch.bfloat16` 2.10 GB<br>`torch.float8_e4m3fn` 8.73 GB |
230
+
231
+ More details about `fms-model-optimizer` can be found [here](https://github.com/foundation-model-stack/fms-model-optimizer/tree/main/examples/FP8_QUANT#quickstart).
232
+
233
+
234
+ ## Llama.cpp
235
+ There is preliminary work to enable running Bamba architecture models using [llama.cpp](https://github.com/ggerganov/llama.cpp). This is work-in-progress, so should only be used as a guide for the adventurous!
236
+
237
+ ### Known Limitations
238
+
239
+ * Currently, inference is only supported on CPUs
240
+ * Models quantized with `llama-quantize` exhibit bad performance
241
+
242
+ ### Setup
243
+ To enable Bamba support, you'll need to build from source using [Gabe's fork](https://github.com/gabe-l-hart/llama.cpp/tree/BambaArchitecture).
244
+
245
+ ```sh
246
+ git clone --branch BambaArchitecture git@github.com:gabe-l-hart/llama.cpp.git
247
+ cd llama.cpp
248
+ mkdir build
249
+ cd build
250
+ # NOTE: To build with debug symbols and extra logging, use CMAKE_BUILD_TYPE=Debug
251
+ cmake .. -DCMAKE_BUILD_TYPE=Release
252
+ make -j
253
+ ```
254
+
255
+ ### Conversion to GGUF
256
+ You can use a pre-converted GGUF file from Huggingface (e.g. [bamba-9b.gguf](https://huggingface.co/ibm-fms/Bamba-9B/blob/main/bamba-9b.gguf)). If one doesn't exist, you can use the [convert_hf_to_gguf.py](https://github.com/gabe-l-hart/llama.cpp/blob/BambaArchitecture/convert_hf_to_gguf.py) script from Gabe's fork to perform the conversion manually.
257
+
258
+ ```sh
259
+ # Install the python dependencies
260
+ cd /path/to/llama.cpp
261
+ pip install -r requirements/requirements-convert_hf_to_gguf.txt
262
+
263
+ # Perform the conversion
264
+ ./convert_hf_to_gguf.py /path/to/bamba-model --outfile /path/to/bamba-model/bamba-model.gguf
265
+ ```
266
+
267
+ ### Run with llama-cli
268
+
269
+ ```sh
270
+ # Run the model with no layers on the GPU (CPU-only)
271
+ cd /path/to/llama.cpp
272
+ ./bin/llama-cli -ngl 0 -m /path/to/bamba-model/bamba-model.gguf -p "Tell me a story about a developer and their dog"
273
+ ```
274
+
275
+ ### Quantization with llama-quantize
276
+ You can (optionally) quantize the GGUF model using `llama.cpp`'s built in quantizaiton tool `llama-quantize`.
277
+
278
+ ```sh
279
+ # Run the quantization (see llama-quantize --help for all quant types)
280
+ cd /path/to/llama.cpp
281
+ ./build/bin/llama-quantize /path/to/bamba-model/bamba-model.gguf Q4_K_M
282
+ ```
283
+
284
+ ## Contributors
285
+
286
+ * **Data collection and curation**: We acknowledge and thank AllenAI team for making a high quality open source dataset Dolma as well as Hugging Face data team for making FineWeb-edu and Cosmopedia available. These are tremendous contributions and enable us to create the model today.
287
+ * **Data preprocessing**: We thank IBM's internal data preprocessing team, specifically Tuan Hoang Trong, Syed Zawad, Jay Gala, and Ryan Gordon for helping tokenize the data at scale. The code for tokenization is available [here](https://github.com/IBM/data-prep-kit).
288
+ * **Model architecture**: The model architecture design was jointly done by Princeton, CMU, IBM, and UIUC and involved the following folks: Tri Dao (Princeton), Albert Gu (CMU), Linsong Chu (IBM), Davis Wertheimer (IBM), Minjia Zhang (UIUC), Mudhakar Srivatsa (IBM), and Raghu Ganti (IBM).
289
+ * **Model training**: Model training was performed primarily by the IBM team using the Mamba2 kernels and layer implementation from Tri Dao and Albert Gu. The following folks from IBM were primarily involved: Linsong Chu, Divya Kumari, Davis Wertheimer, Raghu Ganti, and Dakshi Agrawal.
290
+ * **Model tuning**: Tuning of the model was enabled and verified in [TRL](https://github.com/huggingface/trl) by the IBM team, involving Sukriti Sharma and Anh Uong.
291
+ * **Model inference**: Model inference in `transformers`, `vLLM`, and `llama.cpp` builds on the kernels written by Princeton and CMU. The IBM team is working with the community to enable it in various ecosystems, the team includes Fabian Lim, Antoni viros i Martin, Adnan Hoque, Jamie Yang, Nelson Nimura Gomez, Joshua Rosenkranz, Nick Hill, and Gabe Goodhart.
292
+ * **Quantization**: Quantization is led by the IBM team \- Naigang Wang and Charlie Liu.
293
+ * **Evaluations**: Evaluations are led by a team in IBM with long context evaluations being performed by UIUC, involving the following folks: Yotam Perlitz, Ofir Arviv, Michal Shmueli-Scheuer (IBM), Haoechen Shen, and Minjia Zhang (UIUC).
294
+
295
+ Finally, we would like to thank our leadership for their support in this effort \- Priya Nagpurkar, David Cox, Sriram Raghavan, Aya Soffer, and Mukesh Khare.
296
+
297
+ We would also like to thank the community, in particular Pablo Montalvo-Leroux and Vaibhav Srivastav from Hugging Face who provided valuable feedback to this blog and the PRs into transformers. Further, we would like to thank Tyler Michael Smith from Neural Magic, who is shepherding the integration with vLLM.
298
+
299
+ A huge shoutout to Meta PyTorch, AllenAI, and Hugging Face teams for their contributions to the open initative, FSDP allowed us to smoothly train this model and the data from Dolma and Fineweb/Cosmopedia made this model today!