Instructions to use QuantFactory/OLMoE-1B-7B-0924-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use QuantFactory/OLMoE-1B-7B-0924-GGUF with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("QuantFactory/OLMoE-1B-7B-0924-GGUF", dtype="auto") - llama-cpp-python
How to use QuantFactory/OLMoE-1B-7B-0924-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="QuantFactory/OLMoE-1B-7B-0924-GGUF", filename="OLMoE-1B-7B-0924.Q2_K.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use QuantFactory/OLMoE-1B-7B-0924-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf QuantFactory/OLMoE-1B-7B-0924-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf QuantFactory/OLMoE-1B-7B-0924-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf QuantFactory/OLMoE-1B-7B-0924-GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf QuantFactory/OLMoE-1B-7B-0924-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf QuantFactory/OLMoE-1B-7B-0924-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf QuantFactory/OLMoE-1B-7B-0924-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf QuantFactory/OLMoE-1B-7B-0924-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf QuantFactory/OLMoE-1B-7B-0924-GGUF:Q4_K_M
Use Docker
docker model run hf.co/QuantFactory/OLMoE-1B-7B-0924-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use QuantFactory/OLMoE-1B-7B-0924-GGUF with Ollama:
ollama run hf.co/QuantFactory/OLMoE-1B-7B-0924-GGUF:Q4_K_M
- Unsloth Studio new
How to use QuantFactory/OLMoE-1B-7B-0924-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for QuantFactory/OLMoE-1B-7B-0924-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for QuantFactory/OLMoE-1B-7B-0924-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for QuantFactory/OLMoE-1B-7B-0924-GGUF to start chatting
- Docker Model Runner
How to use QuantFactory/OLMoE-1B-7B-0924-GGUF with Docker Model Runner:
docker model run hf.co/QuantFactory/OLMoE-1B-7B-0924-GGUF:Q4_K_M
- Lemonade
How to use QuantFactory/OLMoE-1B-7B-0924-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull QuantFactory/OLMoE-1B-7B-0924-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.OLMoE-1B-7B-0924-GGUF-Q4_K_M
List all available models
lemonade list
QuantFactory/OLMoE-1B-7B-0924-GGUF
This is quantized version of allenai/OLMoE-1B-7B-0924 created using llama.cpp
Original Model Card
Model Summary
OLMoE-1B-7B is a Mixture-of-Experts LLM with 1B active and 7B total parameters released in September 2024 (0924). It yields state-of-the-art performance among models with a similar cost (1B) and is competitive with much larger models like Llama2-13B. OLMoE is 100% open-source.
This information and more can also be found on the OLMoE GitHub repository.
- Paper: https://arxiv.org/abs/2409.02060
- Pretraining Checkpoints, Code, Data and Logs.
- SFT (Supervised Fine-Tuning) Checkpoints, Code, Data and Logs.
- DPO/KTO (Direct Preference Optimization/Kahneman-Tversky Optimization), Checkpoints, Preference Data, DPO code, KTO code and Logs.
Use
Install transformers from source until a release after this PR & torch and run:
from transformers import OlmoeForCausalLM, AutoTokenizer
import torch
DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
# Load different ckpts via passing e.g. `revision=step10000-tokens41B`
model = OlmoeForCausalLM.from_pretrained("allenai/OLMoE-1B-7B-0924").to(DEVICE)
tokenizer = AutoTokenizer.from_pretrained("allenai/OLMoE-1B-7B-0924")
inputs = tokenizer("Bitcoin is", return_tensors="pt")
inputs = {k: v.to(DEVICE) for k, v in inputs.items()}
out = model.generate(**inputs, max_length=64)
print(tokenizer.decode(out[0]))
# > # Bitcoin is a digital currency that is created and held electronically. No one controls it. Bitcoins arenβt printed, like dollars or euros β theyβre produced by people and businesses running computers all around the world, using software that solves mathematical
You can list all revisions/branches by installing huggingface-hub & running:
from huggingface_hub import list_repo_refs
out = list_repo_refs("OLMoE/OLMoE-1B-7B-0924")
branches = [b.name for b in out.branches]
Important branches:
step1200000-tokens5033B: Pretraining checkpoint used for annealing. There are a few more checkpoints after this one but we did not use them.main: Checkpoint annealed fromstep1200000-tokens5033Bfor an additional 100B tokens (23,842 steps). We use this checkpoint for our adaptation (https://huggingface.co/allenai/OLMoE-1B-7B-0924-SFT & https://huggingface.co/allenai/OLMoE-1B-7B-0924-Instruct).fp32: FP32 version ofmain. The model weights were stored in FP32 during training but we did not observe any performance drop from casting them to BF16 after training so we upload all weights in BF16. If you want the original FP32 checkpoint formainyou can use this one. You will find that it yields slightly different results but should perform around the same on benchmarks.
Evaluation Snapshot
| Model | Active Params | Open Data | MMLU | HellaSwag | ARC-Chall. | ARC-Easy | PIQA | WinoGrande |
|---|---|---|---|---|---|---|---|---|
| LMs with ~1B active parameters | ||||||||
| OLMoE-1B-7B | 1.3B | β | 54.1 | 80.0 | 62.1 | 84.2 | 79.8 | 70.2 |
| DCLM-1B | 1.4B | β | 48.5 | 75.1 | 57.6 | 79.5 | 76.6 | 68.1 |
| TinyLlama-1B | 1.1B | β | 33.6 | 60.8 | 38.1 | 69.5 | 71.7 | 60.1 |
| OLMo-1B (0724) | 1.3B | β | 32.1 | 67.5 | 36.4 | 53.5 | 74.0 | 62.9 |
| Pythia-1B | 1.1B | β | 31.1 | 48.0 | 31.4 | 63.4 | 68.9 | 52.7 |
| LMs with ~2-3B active parameters | ||||||||
| Qwen1.5-3B-14B | 2.7B | β | 62.4 | 80.0 | 77.4 | 91.6 | 81.0 | 72.3 |
| Gemma2-3B | 2.6B | β | 53.3 | 74.6 | 67.5 | 84.3 | 78.5 | 71.8 |
| JetMoE-2B-9B | 2.2B | β | 49.1 | 81.7 | 61.4 | 81.9 | 80.3 | 70.7 |
| DeepSeek-3B-16B | 2.9B | β | 45.5 | 80.4 | 53.4 | 82.7 | 80.1 | 73.2 |
| StableLM-2B | 1.6B | β | 40.4 | 70.3 | 50.6 | 75.3 | 75.6 | 65.8 |
| OpenMoE-3B-9B | 2.9B | β | 27.4 | 44.4 | 29.3 | 50.6 | 63.3 | 51.9 |
| LMs with ~7-9B active parameters | ||||||||
| Gemma2-9B | 9.2B | β | 70.6 | 87.3 | 89.5 | 95.5 | 86.1 | 78.8 |
| Llama3.1-8B | 8.0B | β | 66.9 | 81.6 | 79.5 | 91.7 | 81.1 | 76.6 |
| DCLM-7B | 6.9B | β | 64.4 | 82.3 | 79.8 | 92.3 | 80.1 | 77.3 |
| Mistral-7B | 7.3B | β | 64.0 | 83.0 | 78.6 | 90.8 | 82.8 | 77.9 |
| OLMo-7B (0724) | 6.9B | β | 54.9 | 80.5 | 68.0 | 85.7 | 79.3 | 73.2 |
| Llama2-7B | 6.7B | β | 46.2 | 78.9 | 54.2 | 84.0 | 77.5 | 71.7 |
Citation
@misc{muennighoff2024olmoeopenmixtureofexpertslanguage,
title={OLMoE: Open Mixture-of-Experts Language Models},
author={Niklas Muennighoff and Luca Soldaini and Dirk Groeneveld and Kyle Lo and Jacob Morrison and Sewon Min and Weijia Shi and Pete Walsh and Oyvind Tafjord and Nathan Lambert and Yuling Gu and Shane Arora and Akshita Bhagia and Dustin Schwenk and David Wadden and Alexander Wettig and Binyuan Hui and Tim Dettmers and Douwe Kiela and Ali Farhadi and Noah A. Smith and Pang Wei Koh and Amanpreet Singh and Hannaneh Hajishirzi},
year={2024},
eprint={2409.02060},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2409.02060},
}
- Downloads last month
- 317
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit