Upload README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,171 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
tags:
|
| 5 |
+
- jamba
|
| 6 |
+
- mamba
|
| 7 |
+
- moe
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# Jamba-v0.1-9B
|
| 11 |
+
|
| 12 |
+
A dense version of [Jamba-v0.1](https://huggingface.co/ai21labs/Jamba-v0.1), which extracts the weights of the first expert.
|
| 13 |
+
It no longer uses MoE. Please refer to [this script](https://github.com/TechxGenus/Jamba-utils/blob/main/dense_downcycling.py) for details.
|
| 14 |
+
It can use single 3090/4090 for inference, and the usage method is exactly the same as Jamba-v0.1.
|
| 15 |
+
|
| 16 |
+
---
|
| 17 |
+
|
| 18 |
+
# Original Model Card for Jamba
|
| 19 |
+
|
| 20 |
+
Jamba is a state-of-the-art, hybrid SSM-Transformer LLM. It delivers throughput gains over traditional Transformer-based models, while outperforming or matching the leading models of its size class on most common benchmarks.
|
| 21 |
+
|
| 22 |
+
Jamba is the first production-scale Mamba implementation, which opens up interesting research and application opportunities. While this initial experimentation shows encouraging gains, we expect these to be further enhanced with future optimizations and explorations.
|
| 23 |
+
|
| 24 |
+
This model card is for the base version of Jamba. It’s a pretrained, mixture-of-experts (MoE) generative text model, with 12B active parameters and a total of 52B parameters across all experts. It supports a 256K context length, and can fit up to 140K tokens on a single 80GB GPU.
|
| 25 |
+
|
| 26 |
+
For full details of this model please read the [release blog post](https://www.ai21.com/blog/announcing-jamba).
|
| 27 |
+
|
| 28 |
+
## Model Details
|
| 29 |
+
|
| 30 |
+
- **Developed by:** [AI21](https://www.ai21.com)
|
| 31 |
+
- **Model type:** Joint Attention and Mamba (Jamba)
|
| 32 |
+
- **License:** Apache 2.0
|
| 33 |
+
- **Context length:** 256K
|
| 34 |
+
- **Knowledge cutoff date:** March 5, 2024
|
| 35 |
+
|
| 36 |
+
## Usage
|
| 37 |
+
### Presequities
|
| 38 |
+
Jamba requires you use `transformers` version 4.39.0 or higher:
|
| 39 |
+
```bash
|
| 40 |
+
pip install transformers>=4.39.0
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
In order to run optimized Mamba implementations, you first need to install `mamba-ssm` and `causal-conv1d`:
|
| 44 |
+
```bash
|
| 45 |
+
pip install mamba-ssm causal-conv1d>=1.2.0
|
| 46 |
+
```
|
| 47 |
+
You also have to have the model on a CUDA device.
|
| 48 |
+
|
| 49 |
+
You can run the model not using the optimized Mamba kernels, but it is **not** recommended as it will result in significantly lower latencies. In order to do that, you'll need to specify `use_mamba_kernels=False` when loading the model.
|
| 50 |
+
|
| 51 |
+
### Run the model
|
| 52 |
+
Please note that, at the moment, `trust_remote_code=True` is required for running the new Jamba architecture.
|
| 53 |
+
```python
|
| 54 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 55 |
+
|
| 56 |
+
model = AutoModelForCausalLM.from_pretrained("ai21labs/Jamba-v0.1",
|
| 57 |
+
trust_remote_code=True)
|
| 58 |
+
tokenizer = AutoTokenizer.from_pretrained("ai21labs/Jamba-v0.1")
|
| 59 |
+
|
| 60 |
+
input_ids = tokenizer("In the recent Super Bowl LVIII,", return_tensors='pt').to(model.device)["input_ids"]
|
| 61 |
+
|
| 62 |
+
outputs = model.generate(input_ids, max_new_tokens=216)
|
| 63 |
+
|
| 64 |
+
print(tokenizer.batch_decode(outputs))
|
| 65 |
+
# ["<|startoftext|>In the recent Super Bowl LVIII, the Kansas City Chiefs emerged victorious, defeating the San Francisco 49ers in a thrilling overtime showdown. The game was a nail-biter, with both teams showcasing their skills and determination.\n\nThe Chiefs, led by their star quarterback Patrick Mahomes, displayed their offensive prowess, while the 49ers, led by their strong defense, put up a tough fight. The game went into overtime, with the Chiefs ultimately securing the win with a touchdown.\n\nThe victory marked the Chiefs' second Super Bowl win in four years, solidifying their status as one of the top teams in the NFL. The game was a testament to the skill and talent of both teams, and a thrilling end to the NFL season.\n\nThe Super Bowl is not just about the game itself, but also about the halftime show and the commercials. This year's halftime show featured a star-studded lineup, including Usher, Alicia Keys, and Lil Jon. The show was a spectacle of music and dance, with the performers delivering an energetic and entertaining performance.\n"]
|
| 66 |
+
```
|
| 67 |
+
|
| 68 |
+
<details>
|
| 69 |
+
<summary><strong>Loading the model in half precision</strong></summary>
|
| 70 |
+
|
| 71 |
+
The published checkpoint is saved in BF16. In order to load it into RAM in BF16/FP16, you need to specify `torch_dtype`:
|
| 72 |
+
|
| 73 |
+
```python
|
| 74 |
+
from transformers import AutoModelForCausalLM
|
| 75 |
+
import torch
|
| 76 |
+
model = AutoModelForCausalLM.from_pretrained("ai21labs/Jamba-v0.1",
|
| 77 |
+
trust_remote_code=True,
|
| 78 |
+
torch_dtype=torch.bfloat16) # you can also use torch_dtype=torch.float16
|
| 79 |
+
```
|
| 80 |
+
|
| 81 |
+
When using half precision, you can enable the [FlashAttention2](https://github.com/Dao-AILab/flash-attention) implementation of the Attention blocks. In order to use it, you also need the model on a CUDA device. Since in this precision the model is to big to fit on a single 80GB GPU, you'll also need to parallelize it using [accelerate](https://huggingface.co/docs/accelerate/index):
|
| 82 |
+
```python
|
| 83 |
+
from transformers import AutoModelForCausalLM
|
| 84 |
+
import torch
|
| 85 |
+
model = AutoModelForCausalLM.from_pretrained("ai21labs/Jamba-v0.1",
|
| 86 |
+
trust_remote_code=True,
|
| 87 |
+
torch_dtype=torch.bfloat16,
|
| 88 |
+
attn_implementation="flash_attention_2",
|
| 89 |
+
device_map="auto")
|
| 90 |
+
```
|
| 91 |
+
|
| 92 |
+
</details>
|
| 93 |
+
<details><summary><strong>Load the model in 8-bit</strong></summary>
|
| 94 |
+
|
| 95 |
+
**Using 8-bit precision, it is possible to fit up to 140K sequence lengths on a single 80GB GPU.** You can easily quantize the model to 8-bit using [bitsandbytes](https://huggingface.co/docs/bitsandbytes/index). In order to not degrade model quality, we recommend to exclude the Mamba blocks from the quantization:
|
| 96 |
+
|
| 97 |
+
```python
|
| 98 |
+
from transformers import AutoModelForCausalLM, BitsAndBytesConfig
|
| 99 |
+
quantization_config = BitsAndBytesConfig(load_in_8bit=True,
|
| 100 |
+
llm_int8_skip_modules=["mamba"])
|
| 101 |
+
model = AutoModelForCausalLM.from_pretrained("ai21labs/Jamba-v0.1",
|
| 102 |
+
trust_remote_code=True,
|
| 103 |
+
torch_dtype=torch.bfloat16,
|
| 104 |
+
attn_implementation="flash_attention_2",
|
| 105 |
+
quantization_config=quantization_config)
|
| 106 |
+
```
|
| 107 |
+
</details>
|
| 108 |
+
|
| 109 |
+
### Fine-tuning example
|
| 110 |
+
Jamba is a base model that can be fine-tuned for custom solutions (including for chat/instruct versions). You can fine-tune it using any technique of your choice. Here is an example of fine-tuning with the [PEFT](https://huggingface.co/docs/peft/index) library:
|
| 111 |
+
|
| 112 |
+
```python
|
| 113 |
+
from datasets import load_dataset
|
| 114 |
+
from trl import SFTTrainer
|
| 115 |
+
from peft import LoraConfig
|
| 116 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM, TrainingArguments
|
| 117 |
+
|
| 118 |
+
tokenizer = AutoTokenizer.from_pretrained("ai21labs/Jamba-v0.1")
|
| 119 |
+
model = AutoModelForCausalLM.from_pretrained("ai21labs/Jamba-v0.1", trust_remote_code=True, device_map='auto')
|
| 120 |
+
|
| 121 |
+
dataset = load_dataset("Abirate/english_quotes", split="train")
|
| 122 |
+
training_args = TrainingArguments(
|
| 123 |
+
output_dir="./results",
|
| 124 |
+
num_train_epochs=3,
|
| 125 |
+
per_device_train_batch_size=4,
|
| 126 |
+
logging_dir='./logs',
|
| 127 |
+
logging_steps=10,
|
| 128 |
+
learning_rate=2e-3
|
| 129 |
+
)
|
| 130 |
+
lora_config = LoraConfig(
|
| 131 |
+
r=8,
|
| 132 |
+
target_modules=["embed_tokens", "x_proj", "in_proj", "out_proj"],
|
| 133 |
+
task_type="CAUSAL_LM",
|
| 134 |
+
bias="none"
|
| 135 |
+
)
|
| 136 |
+
trainer = SFTTrainer(
|
| 137 |
+
model=model,
|
| 138 |
+
tokenizer=tokenizer,
|
| 139 |
+
args=training_args,
|
| 140 |
+
peft_config=lora_config,
|
| 141 |
+
train_dataset=dataset,
|
| 142 |
+
dataset_text_field="quote",
|
| 143 |
+
)
|
| 144 |
+
|
| 145 |
+
trainer.train()
|
| 146 |
+
```
|
| 147 |
+
|
| 148 |
+
## Results on common benchmarks
|
| 149 |
+
| Benchmark | Score |
|
| 150 |
+
|--------------|:-----:|
|
| 151 |
+
| HellaSwag | 87.1% |
|
| 152 |
+
| Arc Challenge | 64.4% |
|
| 153 |
+
| WinoGrande | 82.5% |
|
| 154 |
+
| PIQA | 83.2% |
|
| 155 |
+
| MMLU | 67.4% |
|
| 156 |
+
| BBH | 45.4% |
|
| 157 |
+
| TruthfulQA | 46.4% |
|
| 158 |
+
| GSM8K (CoT) | 59.9% |
|
| 159 |
+
|
| 160 |
+
It's crucial that the 'BOS' token is added to all prompts, which might not be enabled by default in all eval frameworks.
|
| 161 |
+
|
| 162 |
+
|
| 163 |
+
## Notice
|
| 164 |
+
Jamba is a pretrained base model and did not undergo any alignment for instruct/chat interactions.
|
| 165 |
+
|
| 166 |
+
As a base model, Jamba is intended for use as a foundation layer for fine tuning, training, and developing custom solutions. Jamba does not have safety moderation mechanisms and guardrails should be added for responsible and safe use.
|
| 167 |
+
|
| 168 |
+
## About AI21
|
| 169 |
+
AI21 builds reliable, practical, and scalable AI solutions for the enterprise.
|
| 170 |
+
|
| 171 |
+
Jamba is the first in AI21’s new family of models, and the Instruct version of Jamba is available in beta via the [AI21 platform](https://www.ai21.com/studio).
|