Update README.md
Browse files
README.md
CHANGED
|
@@ -15,6 +15,8 @@ language:
|
|
| 15 |
|
| 16 |
<!-- Provide a quick summary of what the model is/does. -->
|
| 17 |
|
|
|
|
|
|
|
| 18 |
OLMo is a series of **O**pen **L**anguage **Mo**dels designed to enable the science of language models.
|
| 19 |
The OLMo base models are trained on the [Dolma](https://huggingface.co/datasets/allenai/dolma) dataset.
|
| 20 |
The adapted versions are trained on the [Tulu SFT mixture](https://huggingface.co/datasets/allenai/tulu-v2-sft-mixture) and, for the Instruct version, a [cleaned version of the UltraFeedback dataset](https://huggingface.co/datasets/allenai/ultrafeedback_binarized_cleaned).
|
|
@@ -81,11 +83,9 @@ pip install ai2-olmo
|
|
| 81 |
```
|
| 82 |
Now, proceed as usual with HuggingFace:
|
| 83 |
```python
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
olmo = AutoModelForCausalLM.from_pretrained("allenai/OLMo-7B-SFT")
|
| 88 |
-
tokenizer = AutoTokenizer.from_pretrained("allenai/OLMo-7B-SFT")
|
| 89 |
chat = [
|
| 90 |
{ "role": "user", "content": "What is language modeling?" },
|
| 91 |
]
|
|
|
|
| 15 |
|
| 16 |
<!-- Provide a quick summary of what the model is/does. -->
|
| 17 |
|
| 18 |
+
**For transformers versions v4.40.0 or newer, we suggest using [OLMo 7B SFT HF](https://huggingface.co/allenai/OLMo-7B-SFT-hf) instead.**
|
| 19 |
+
|
| 20 |
OLMo is a series of **O**pen **L**anguage **Mo**dels designed to enable the science of language models.
|
| 21 |
The OLMo base models are trained on the [Dolma](https://huggingface.co/datasets/allenai/dolma) dataset.
|
| 22 |
The adapted versions are trained on the [Tulu SFT mixture](https://huggingface.co/datasets/allenai/tulu-v2-sft-mixture) and, for the Instruct version, a [cleaned version of the UltraFeedback dataset](https://huggingface.co/datasets/allenai/ultrafeedback_binarized_cleaned).
|
|
|
|
| 83 |
```
|
| 84 |
Now, proceed as usual with HuggingFace:
|
| 85 |
```python
|
| 86 |
+
from hf_olmo import OLMoForCausalLM, OLMoTokenizerFast
|
| 87 |
+
olmo = OLMoForCausalLM.from_pretrained("allenai/OLMo-7B-SFT")
|
| 88 |
+
tokenizer = OLMoTokenizerFast.from_pretrained("allenai/OLMo-7B-SFT")
|
|
|
|
|
|
|
| 89 |
chat = [
|
| 90 |
{ "role": "user", "content": "What is language modeling?" },
|
| 91 |
]
|