kartikmosaicml
commited on
Commit
•
530078e
1
Parent(s):
15d5abc
adding more details to the readme and updating data mix
Browse files
README.md
CHANGED
@@ -6,33 +6,28 @@ tags:
|
|
6 |
- llm-foundry
|
7 |
- StreamingDatasets
|
8 |
datasets:
|
|
|
9 |
- mc4
|
10 |
-
- c4
|
11 |
- togethercomputer/RedPajama-Data-1T
|
12 |
-
- bigcode/the-stack
|
13 |
- allenai/s2orc
|
14 |
-
- TODO
|
15 |
inference: false
|
16 |
---
|
17 |
|
18 |
# MPT-30B
|
19 |
|
20 |
-
MPT-
|
21 |
This model was trained by [MosaicML](https://www.mosaicml.com).
|
22 |
|
23 |
MPT-30B is part of the family of MosaicPretrainedTransformer (MPT) models, which use a modified transformer architecture optimized for efficient training and inference.
|
24 |
|
25 |
-
|
26 |
-
positional embeddings with Attention with Linear Biases ([ALiBi](https://arxiv.org/abs/2108.12409)).
|
27 |
-
Thanks to these modifications, MPT models can be trained with high throughput efficiency and stable convergence.
|
28 |
-
MPT models can also be served efficiently with both standard HuggingFace pipelines and NVIDIA's [FasterTransformer](https://github.com/NVIDIA/FasterTransformer).
|
29 |
|
30 |
This model uses the MosaicML LLM codebase, which can be found in the [llm-foundry repository](https://github.com/mosaicml/llm-foundry). It was trained by MosaicML’s NLP team on the [MosaicML platform](https://www.mosaicml.com/training) for LLM pretraining, finetuning, and inference.
|
31 |
|
32 |
### How is this model different?
|
33 |
|
34 |
-
MPT-30B is
|
35 |
-
|
36 |
* **Licensed for the possibility of commercial use** (unlike [LLaMA](https://arxiv.org/abs/2302.13971)).
|
37 |
* **Trained on a large amount of data** (1T tokens like [LLaMA](https://arxiv.org/abs/2302.13971) vs. 300B for [Pythia](https://github.com/EleutherAI/pythia), 300B for [OpenLLaMA](https://github.com/openlm-research/open_llama), and 800B for [StableLM](https://github.com/Stability-AI/StableLM)).
|
38 |
* **Prepared to handle extremely long inputs** thanks to [ALiBi](https://arxiv.org/abs/2108.12409) (TODO: talk about MPT-30B-instruct finetuned on 8k).
|
@@ -45,7 +40,7 @@ The following models are finetuned on MPT-30B:
|
|
45 |
|
46 |
* [MPT-30B-Instruct](https://huggingface.co/mosaicml/mpt-30b-instruct): a model for short-form instruction following.
|
47 |
Built by finetuning MPT-30B on several carefully curated datasets.
|
48 |
-
* [Demo on Hugging Face Spaces](https://huggingface.co/spaces/mosaicml/mpt-30b-instruct)
|
49 |
|
50 |
* [MPT-30B-Chat](https://huggingface.co/mosaicml/mpt-30b-chat): a chatbot-like model for dialogue generation.
|
51 |
Built by finetuning MPT-30B on [ShareGPT-Vicuna](https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered), [Camel-AI](https://huggingface.co/camel-ai),
|
@@ -55,7 +50,7 @@ Built by finetuning MPT-30B on [ShareGPT-Vicuna](https://huggingface.co/datasets
|
|
55 |
|
56 |
## Model Date
|
57 |
|
58 |
-
|
59 |
|
60 |
## Model License
|
61 |
|
@@ -63,7 +58,7 @@ Apache-2.0
|
|
63 |
|
64 |
## Documentation
|
65 |
|
66 |
-
* [Blog post:
|
67 |
* [Codebase (mosaicml/llm-foundry repo)](https://github.com/mosaicml/llm-foundry/)
|
68 |
* Questions: Feel free to contact us via the [MosaicML Community Slack](https://mosaicml.me/slack)!
|
69 |
|
@@ -91,8 +86,8 @@ import transformers
|
|
91 |
name = 'mosaicml/mpt-30b'
|
92 |
|
93 |
config = transformers.AutoConfig.from_pretrained(name, trust_remote_code=True)
|
94 |
-
config.attn_config['attn_impl'] = 'triton
|
95 |
-
config.init_device = '
|
96 |
|
97 |
model = transformers.AutoModelForCausalLM.from_pretrained(
|
98 |
name,
|
@@ -102,8 +97,8 @@ model = transformers.AutoModelForCausalLM.from_pretrained(
|
|
102 |
)
|
103 |
```
|
104 |
|
105 |
-
|
106 |
-
|
107 |
```python
|
108 |
import transformers
|
109 |
|
@@ -119,11 +114,11 @@ model = transformers.AutoModelForCausalLM.from_pretrained(
|
|
119 |
)
|
120 |
```
|
121 |
|
122 |
-
This model was trained with the [EleutherAI/gpt-neox-20b](https://huggingface.co/EleutherAI/gpt-neox-20b) tokenizer.
|
123 |
|
124 |
```python
|
125 |
from transformers import AutoTokenizer
|
126 |
-
tokenizer = AutoTokenizer.from_pretrained('
|
127 |
```
|
128 |
|
129 |
The model can then be used, for example, within a text-generation pipeline.
|
@@ -132,8 +127,13 @@ Note: when running Torch modules in lower precision, it is best practice to use
|
|
132 |
```python
|
133 |
from transformers import pipeline
|
134 |
|
135 |
-
|
|
|
|
|
|
|
136 |
|
|
|
|
|
137 |
with torch.autocast('cuda', dtype=torch.bfloat16):
|
138 |
print(
|
139 |
pipe('Here is a recipe for vegan banana bread:\n',
|
@@ -173,25 +173,22 @@ StreamingDataset obviates the need to download the whole dataset before starting
|
|
173 |
|
174 |
### Data Mix
|
175 |
|
176 |
-
The model was trained for 1T tokens (with batch size TBD
|
177 |
|
178 |
-
(TODO: update this)
|
179 |
| Data Source | Number of Tokens in Source | Proportion | Effective Number of Tokens | Epochs |
|
180 |
|-------------|----------------------------|------------|----------------------------|--------|
|
181 |
-
| mC4 3.1.0 - English |
|
182 |
-
|
|
183 |
-
| RedPajama - CommonCrawl | 878.45 B |
|
184 |
-
| The Stack - Selected Languages | 463.78 B |
|
185 |
-
| RedPajama - Wikipedia
|
186 |
-
| The Stack - Markdown | 107.07 B |
|
187 |
-
|
|
188 |
-
| RedPajama - Books | 26.02 B |
|
189 |
-
| RedPajama - arXiv | 28.10 B |
|
190 |
-
| RedPajama - StackExchange | 20.54 B |
|
191 |
-
|
192 |
-
Samples for each batch were selected from one of the datasets with the probability specified above.
|
193 |
-
(TODO: check with @sam whether only FT was on 8k)
|
194 |
-
The examples were shuffled within each dataset, and each example was constructed from as many sequences from that dataset as were necessary to fill the 8192 sequence length.
|
195 |
|
196 |
The data was tokenized using the [EleutherAI/gpt-neox-20b](https://huggingface.co/EleutherAI/gpt-neox-20b) tokenizer. This BPE tokenizer has a number of desirable characteristics,
|
197 |
most of which are relevant for tokenizing code:
|
@@ -199,12 +196,14 @@ most of which are relevant for tokenizing code:
|
|
199 |
(2) It applies consistent space delimitation, unlike the GPT2 tokenizer which tokenizes inconsistently depending on the presence of prefix spaces
|
200 |
(3) It contains tokens for repeated space characters, which allows superior compression of text with large amounts of repeated space characters.
|
201 |
|
202 |
-
The model vocabulary size of 50432 was set to be a multiple of 128 (as in [MEGATRON-LM](https://arxiv.org/abs/1909.08053))
|
203 |
|
204 |
### Training Configuration
|
205 |
|
206 |
-
|
207 |
-
|
|
|
|
|
208 |
The model was trained with sharded data parallelism using [FSDP](https://pytorch.org/docs/stable/fsdp.html) and used the [LION](https://arxiv.org/abs/2302.06675) optimizer.
|
209 |
|
210 |
## Limitations and Biases
|
@@ -238,7 +237,7 @@ Please cite this model using the following format:
|
|
238 |
ly Usable LLMs},
|
239 |
year = {2023},
|
240 |
url = {www.mosaicml.com/blog/mpt-30b},
|
241 |
-
note = {Accessed:
|
242 |
-
urldate = {
|
243 |
}
|
244 |
```
|
|
|
6 |
- llm-foundry
|
7 |
- StreamingDatasets
|
8 |
datasets:
|
9 |
+
- allenai/c4
|
10 |
- mc4
|
|
|
11 |
- togethercomputer/RedPajama-Data-1T
|
12 |
+
- bigcode/the-stack-dedup
|
13 |
- allenai/s2orc
|
|
|
14 |
inference: false
|
15 |
---
|
16 |
|
17 |
# MPT-30B
|
18 |
|
19 |
+
MPT-30B is a decoder-style transformer pretrained from scratch on 1T tokens of English text and code.
|
20 |
This model was trained by [MosaicML](https://www.mosaicml.com).
|
21 |
|
22 |
MPT-30B is part of the family of MosaicPretrainedTransformer (MPT) models, which use a modified transformer architecture optimized for efficient training and inference.
|
23 |
|
24 |
+
MPT-30B comes with special features that differentiate them from other LLMs, including an 8k token context window (which can be further extended via finetuning; see [MPT-7B-StoryWriter](https://huggingface.co/mosaicml/mpt-7b-storywriter)), support for context-length extrapolation via [ALiBi](https://arxiv.org/abs/2108.12409), and efficient inference + training performance via FlashAttention. It also has strong coding abilities thanks to its pretraining mix. MPT models can also be served efficiently with both standard HuggingFace pipelines and NVIDIA's [FasterTransformer](https://github.com/NVIDIA/FasterTransformer).
|
|
|
|
|
|
|
25 |
|
26 |
This model uses the MosaicML LLM codebase, which can be found in the [llm-foundry repository](https://github.com/mosaicml/llm-foundry). It was trained by MosaicML’s NLP team on the [MosaicML platform](https://www.mosaicml.com/training) for LLM pretraining, finetuning, and inference.
|
27 |
|
28 |
### How is this model different?
|
29 |
|
30 |
+
MPT-30B is:
|
|
|
31 |
* **Licensed for the possibility of commercial use** (unlike [LLaMA](https://arxiv.org/abs/2302.13971)).
|
32 |
* **Trained on a large amount of data** (1T tokens like [LLaMA](https://arxiv.org/abs/2302.13971) vs. 300B for [Pythia](https://github.com/EleutherAI/pythia), 300B for [OpenLLaMA](https://github.com/openlm-research/open_llama), and 800B for [StableLM](https://github.com/Stability-AI/StableLM)).
|
33 |
* **Prepared to handle extremely long inputs** thanks to [ALiBi](https://arxiv.org/abs/2108.12409) (TODO: talk about MPT-30B-instruct finetuned on 8k).
|
|
|
40 |
|
41 |
* [MPT-30B-Instruct](https://huggingface.co/mosaicml/mpt-30b-instruct): a model for short-form instruction following.
|
42 |
Built by finetuning MPT-30B on several carefully curated datasets.
|
43 |
+
* [Demo on Hugging Face Spaces](https://huggingface.co/spaces/mosaicml/mpt-30b-instruct)
|
44 |
|
45 |
* [MPT-30B-Chat](https://huggingface.co/mosaicml/mpt-30b-chat): a chatbot-like model for dialogue generation.
|
46 |
Built by finetuning MPT-30B on [ShareGPT-Vicuna](https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered), [Camel-AI](https://huggingface.co/camel-ai),
|
|
|
50 |
|
51 |
## Model Date
|
52 |
|
53 |
+
June 22, 2023
|
54 |
|
55 |
## Model License
|
56 |
|
|
|
58 |
|
59 |
## Documentation
|
60 |
|
61 |
+
* [Blog post: MPT-30B: Raising the bar for open-source commercial foundation models](https://www.mosaicml.com/blog/mpt-30b)
|
62 |
* [Codebase (mosaicml/llm-foundry repo)](https://github.com/mosaicml/llm-foundry/)
|
63 |
* Questions: Feel free to contact us via the [MosaicML Community Slack](https://mosaicml.me/slack)!
|
64 |
|
|
|
86 |
name = 'mosaicml/mpt-30b'
|
87 |
|
88 |
config = transformers.AutoConfig.from_pretrained(name, trust_remote_code=True)
|
89 |
+
config.attn_config['attn_impl'] = 'torch # change this to use triton
|
90 |
+
config.init_device = 'cpu' # For fast initialization directly on GPU if you have enough memory
|
91 |
|
92 |
model = transformers.AutoModelForCausalLM.from_pretrained(
|
93 |
name,
|
|
|
97 |
)
|
98 |
```
|
99 |
|
100 |
+
The model was trained initially with a sequence length of 4096 with an additional pretraining stage for sequence length adapation up to 8192. However, ALiBi enables users to increase the maximum sequence length even further during finetuning and/or inference. For example:
|
101 |
+
|
102 |
```python
|
103 |
import transformers
|
104 |
|
|
|
114 |
)
|
115 |
```
|
116 |
|
117 |
+
This model was trained with the MPT-30B tokenizer which is identical to the [EleutherAI/gpt-neox-20b](https://huggingface.co/EleutherAI/gpt-neox-20b) tokenizer.
|
118 |
|
119 |
```python
|
120 |
from transformers import AutoTokenizer
|
121 |
+
tokenizer = AutoTokenizer.from_pretrained('mosaicml/mpt-30b')
|
122 |
```
|
123 |
|
124 |
The model can then be used, for example, within a text-generation pipeline.
|
|
|
127 |
```python
|
128 |
from transformers import pipeline
|
129 |
|
130 |
+
with torch.autocast('cuda', dtype=torch.bfloat16):
|
131 |
+
inputs = tokenizer('Here is a recipe for vegan banana bread:\n', return_tensors="pt").to('cuda')
|
132 |
+
outputs = model.generate(**inputs, max_new_tokens=100)
|
133 |
+
print(tokenizer.batch_decode(outputs, skip_special_tokens=True))
|
134 |
|
135 |
+
# or using the HF pipeline
|
136 |
+
pipe = pipeline('text-generation', model=model, tokenizer=tokenizer, device='cuda:0')
|
137 |
with torch.autocast('cuda', dtype=torch.bfloat16):
|
138 |
print(
|
139 |
pipe('Here is a recipe for vegan banana bread:\n',
|
|
|
173 |
|
174 |
### Data Mix
|
175 |
|
176 |
+
The model was trained for 1T tokens (with batch size TBD). It was trained on the following data mix:
|
177 |
|
|
|
178 |
| Data Source | Number of Tokens in Source | Proportion | Effective Number of Tokens | Epochs |
|
179 |
|-------------|----------------------------|------------|----------------------------|--------|
|
180 |
+
| mC4 3.1.0 - English (200+ words) | 2417.99 B | 33.50% | 335 B | 0.14 |
|
181 |
+
| c4 - English - SemDedup 80% | 100.42 B | 29.90% | 299 B | 2.98 |
|
182 |
+
| RedPajama - CommonCrawl | 878.45 B | 8.50% | 85 B | 0.097 |
|
183 |
+
| The Stack - Selected Languages | 463.78 B | 10.00% | 100 B | 0.22 |
|
184 |
+
| RedPajama - Wikipedia | 4.87 B | 4.00% | 40 B | 8.21 |
|
185 |
+
| The Stack - Markdown | 107.07 B | 4.50% | 45 B | 0.42 |
|
186 |
+
| Semantic Scholar ORC | 48.95 B | 3.30% | 33 B | 0.67 |
|
187 |
+
| RedPajama - Books | 26.02 B | 3.00% | 30 B | 1.15 |
|
188 |
+
| RedPajama - arXiv | 28.10 B | 1.90% | 19 B | 0.68 |
|
189 |
+
| RedPajama - StackExchange | 20.54 B | 1.40% | 14 B |0.68 |
|
190 |
+
|
191 |
+
Samples for each batch were selected from one of the datasets with the probability specified above. The examples were shuffled within each dataset, and each example was constructed from as many sequences from that dataset as were necessary to fill the sequence length. To build 8k support into MPT-30B efficiently, we first pre-trained on 1T tokens using sequences that were 2k tokens long, and then trained for an additional 50B tokens using sequences that were 8k tokens long.
|
|
|
|
|
192 |
|
193 |
The data was tokenized using the [EleutherAI/gpt-neox-20b](https://huggingface.co/EleutherAI/gpt-neox-20b) tokenizer. This BPE tokenizer has a number of desirable characteristics,
|
194 |
most of which are relevant for tokenizing code:
|
|
|
196 |
(2) It applies consistent space delimitation, unlike the GPT2 tokenizer which tokenizes inconsistently depending on the presence of prefix spaces
|
197 |
(3) It contains tokens for repeated space characters, which allows superior compression of text with large amounts of repeated space characters.
|
198 |
|
199 |
+
The model vocabulary size of 50432 was set to be a multiple of 128 (as in [MEGATRON-LM](https://arxiv.org/abs/1909.08053)).
|
200 |
|
201 |
### Training Configuration
|
202 |
|
203 |
+
The model was trained in three stages using the [MosaicML Platform](https://www.mosaicml.com/platform):
|
204 |
+
(i) First it was trained on 440 A100-40GBs with a batch size of 1760.
|
205 |
+
(ii) Then, on 216 A100-40GBs with a batch size of 1728.
|
206 |
+
(iii) Training was completed on 256 H100-80GBs with a batch size of 512 with 8k context length and 50B tokens.
|
207 |
The model was trained with sharded data parallelism using [FSDP](https://pytorch.org/docs/stable/fsdp.html) and used the [LION](https://arxiv.org/abs/2302.06675) optimizer.
|
208 |
|
209 |
## Limitations and Biases
|
|
|
237 |
ly Usable LLMs},
|
238 |
year = {2023},
|
239 |
url = {www.mosaicml.com/blog/mpt-30b},
|
240 |
+
note = {Accessed: 2023-06-22},
|
241 |
+
urldate = {2023-06-22}
|
242 |
}
|
243 |
```
|