Instructions to use UW/OLMo2-8B-BPE with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use UW/OLMo2-8B-BPE with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="UW/OLMo2-8B-BPE")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("UW/OLMo2-8B-BPE") model = AutoModelForCausalLM.from_pretrained("UW/OLMo2-8B-BPE") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use UW/OLMo2-8B-BPE with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "UW/OLMo2-8B-BPE" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "UW/OLMo2-8B-BPE", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/UW/OLMo2-8B-BPE
- SGLang
How to use UW/OLMo2-8B-BPE with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "UW/OLMo2-8B-BPE" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "UW/OLMo2-8B-BPE", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "UW/OLMo2-8B-BPE" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "UW/OLMo2-8B-BPE", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use UW/OLMo2-8B-BPE with Docker Model Runner:
docker model run hf.co/UW/OLMo2-8B-BPE
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
library_name: transformers
|
| 6 |
+
datasets:
|
| 7 |
+
- allenai/olmo-mix-1124
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
+
# BPE Baseline
|
| 11 |
+
This 8B model was trained from scratch with a traditional subword BPE tokenizer, and serves as our baseline in experiments.
|
| 12 |
+
|
| 13 |
+
The model was trained with the Olmo2 7B architecture and pretraining data. It has a context length of 4,096 tokens and is trained on 321B tokens. The tokenizer has a vocabulary size of 200k.
|
| 14 |
+
|
| 15 |
+
## Example Usage
|
| 16 |
+
|
| 17 |
+
```
|
| 18 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 19 |
+
|
| 20 |
+
tokenizer = AutoTokenizer.from_pretrained("UW/OLMo2-8B-BPE")
|
| 21 |
+
model = AutoModelForCausalLM.from_pretrained("UW/OLMo2-8B-BPE")
|
| 22 |
+
|
| 23 |
+
tokenizer.convert_ids_to_tokens(tokenizer.encode("By the way, I am a fan of the Milky Way."))
|
| 24 |
+
# ['By', 'Ġthe', 'Ġway', ',', 'ĠI', 'Ġam', 'Ġa', 'Ġfan', 'Ġof', 'Ġthe', 'ĠMilky', 'ĠWay', '.']
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
# Citation
|
| 28 |
+
```
|
| 29 |
+
@misc{liu-etal-2025-superbpe,
|
| 30 |
+
title={SuperBPE: Space Travel for Language Models},
|
| 31 |
+
author={Alisa Liu and Jonathan Hayase and Valentin Hofmann and Sewoong Oh and Noah A. Smith and Yejin Choi},
|
| 32 |
+
year={2025},
|
| 33 |
+
eprint={2503.13423},
|
| 34 |
+
archivePrefix={arXiv},
|
| 35 |
+
primaryClass={cs.CL},
|
| 36 |
+
url={https://arxiv.org/abs/2503.13423},
|
| 37 |
+
}
|
| 38 |
+
```
|