πŸ“‹ Model Description


license: apache-2.0 library_name: transformers tags:
  • bamba

Model Details

Bamba

Model Card for Bamba 9B

We introduce Bamba-9B, a decoder-only language model based on the Mamba-2 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.
ModelParams# LayersHidden Dim.Attention HeadsGQAKV HeadsContext LengthTied Embeddings
Bamba9B (9.78B)32409632Yes84096False

The current release includes the following models:




StageBamba 9BQuantizedNote
Base Modelibm-fms/Bamba-9B-v1ibm-fms/Bamba-9B-fp8Stage 2 pretraining
Base Modelibm-fms/Bamba-9B-2Tibm-fms/Bamba-9B-fp8Stage 1 pretraining
Base Modelibm-fms/Bamba-9B-1.8Tibm-fms/Bamba-9B-fp8Intermediate checkpoints during Stage 1, more to come
SFTcoming sooncoming soonto be released in the next drop

| DPO | coming soon | coming soon | to be released in the next drop |

Original checkpoints (in dcp format) were also uploaded to public bucket:

bucket: bamba-public
endpoint-url: https://s3.us-east.cloud-object-storage.appdomain.cloud

example command to list original Bamba distributed checkpoints:
aws --endpoint-url https://s3.us-east.cloud-object-storage.appdomain.cloud s3 ls s3://bamba-public/checkpoints/pretraining/phasetwo/22t/step140000ckp/

Installation

Besides PyTorch, you would need a few extra dependencies for
Mamba models.

We found some of these dependencies picky on PyTorch versions when doing pip install, so
the best way is to build from source for all Mamba dependencies if you hit dependency
issue with your env:

git clone https://github.com/Dao-AILab/causal-conv1d.git
cd causal-conv1d && pip install . && cd ..
git clone https://github.com/state-spaces/mamba.git
cd mamba && pip install . && cd ..
git clone https://github.com/Dao-AILab/flash-attention.git
cd flash-attention && pip install . && cd ..

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:

pip install git+https://github.com/huggingface/transformers.git

Inference

You can utilize our newly contributed HF integration to run inference on our Bamba models:
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("ibm-fms/Bamba-9B-v1")
tokenizer = AutoTokenizer.from_pretrained("ibm-fms/Bamba-9B-v1")

message = ["Mamba is a snake with following properties "]
inputs = tokenizer(message, returntensors='pt', returntokentypeids=False)
response = model.generate(inputs, maxnewtokens=64)
print(tokenizer.batchdecode(response, skipspecial_tokens=True)[0])

Training

We trained our Bamba model with FSDP using our training repo here.
Note that this training effort was started before FSDP2 and also long before we contributed
Mamba2-Hybrid to HF, so we were doing FSDP1 training with official Mamba implementation.
For users trying to reproduce the training you now have much more options with our newly
contributed HF-version of Mamba2-Hybrid.

Benchmark scores

Base pretrained models

Category Benchmark Bamba 9B (2.2T)
General MMLU (5-shot) 60.77
ARC-C (25-shot) 63.23
GSM8K (5-shot) 36.77
Hellaswag (10-shot) 81.8
OpenbookQA (5-shot) 47.6
Piqa (5-shot) 82.26
TruthfulQA (0-shot) 49.21
Winogrande (5-shot) 76.87
HF OpenLLM- V2* MMLU-PRO (5-shot) 17.53
BBH (3-shot) 17.4
GPQA (0-shot) 4.14
IFEval (0-shot) 15.16
MATH Lvl 5 (4-shot) 1.66
MuSR (0-shot) 9.59
Safety Tasks PopQA (5-shot) 20.5
Toxigen (5-shot) 57.4
BBQ (5-shot) 44.2
Crows-pairs english (5-shot) 70.78

*For the v2 leaderboard results, we perform normalization and report the normalized results.
Further details on our evaluation and normalization detailes along with run and analysis scripts can be found here.

Fine-tuning

This example shows how to fine tune the bamba model for a specific task using SFT Trainer.

Quantization

We can create a (FP8) quantized model using fms-model-optimizer, which will make the storage and inference even more efficient.
python -m fmsmo.runquant \
    --modelnameorpath <"pathtooriginalmodel"> \
    --quant_method fp8 \
    --torch_dtype bfloat16 \
    --outputdir <"pathtosavenew_model">
Model size comparison before and after FP8:
originalquantized
memory (total)39.12 GB10.83 GB
memory (break-down)torch.float32 39.12 GBtorch.bfloat16 2.10 GB
torch.float8_e4m3fn 8.73 GB
More details about fms-model-optimizer can be found here.

Llama.cpp

There is preliminary work to enable running Bamba architecture models using llama.cpp. This is work-in-progress, so should only be used as a guide for the adventurous!

Known Limitations

  • Currently, inference is only supported on CPUs
  • Models quantized with llama-quantize exhibit bad performance

Setup

To enable Bamba support, you'll need to build from source using Gabe's fork.
git clone --branch BambaArchitecture [email protected]:gabe-l-hart/llama.cpp.git
cd llama.cpp
mkdir build
cd build

NOTE: To build with debug symbols and extra logging, use CMAKEBUILDTYPE=Debug

cmake .. -DCMAKEBUILDTYPE=Release make -j

Conversion to GGUF

You can use a pre-converted GGUF file from Huggingface (e.g. bamba-9b.gguf). If one doesn't exist, you can use the converthftogguf.py script from Gabe's fork to perform the conversion manually.
# Install the python dependencies
cd /path/to/llama.cpp
pip install -r requirements/requirements-converthfto_gguf.txt

Perform the conversion

./converthfto_gguf.py /path/to/bamba-model --outfile /path/to/bamba-model/bamba-model.gguf

Run with llama-cli

# Run the model with no layers on the GPU (CPU-only)
cd /path/to/llama.cpp
./bin/llama-cli  -ngl 0 -m /path/to/bamba-model/bamba-model.gguf -p "Tell me a story about a developer and their dog"

Quantization with llama-quantize

You can (optionally) quantize the GGUF model using llama.cpp's built in quantizaiton tool llama-quantize.
# Run the quantization (see llama-quantize --help for all quant types)
cd /path/to/llama.cpp
./build/bin/llama-quantize /path/to/bamba-model/bamba-model.gguf Q4KM

Contributors

  • 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.
  • 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.
  • 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).
  • 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.
  • Model tuning: Tuning of the model was enabled and verified in TRL by the IBM team, involving Sukriti Sharma and Anh Uong.
  • 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.
  • Quantization: Quantization is led by the IBM team \- Naigang Wang and Charlie Liu.
  • 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).

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.

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.

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!

πŸ“‚ GGUF File List

πŸ“ Filename πŸ“¦ Size ⚑ Download
bamba-9b.gguf
Recommended LFS
18.23 GB Download