RichardErkhov commited on
Commit
dbe9b6d
Β·
verified Β·
1 Parent(s): 0f6437e

uploaded readme

Browse files
Files changed (1) hide show
  1. README.md +115 -0
README.md ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Quantization made by Richard Erkhov.
2
+
3
+ [Github](https://github.com/RichardErkhov)
4
+
5
+ [Discord](https://discord.gg/pvy7H8DZMG)
6
+
7
+ [Request more models](https://github.com/RichardErkhov/quant_request)
8
+
9
+
10
+ OLMoE-1B-7B-0924 - bnb 4bits
11
+ - Model creator: https://huggingface.co/allenai/
12
+ - Original model: https://huggingface.co/allenai/OLMoE-1B-7B-0924/
13
+
14
+
15
+
16
+
17
+ Original model description:
18
+ ---
19
+ license: apache-2.0
20
+ language:
21
+ - en
22
+ tags:
23
+ - moe
24
+ - olmo
25
+ - olmoe
26
+ co2_eq_emissions: 1
27
+ datasets:
28
+ - allenai/OLMoE-mix-0924
29
+ library_name: transformers
30
+ ---
31
+
32
+ <img alt="OLMoE Logo." src="olmoe-logo.png" width="250px">
33
+
34
+
35
+ # Model Summary
36
+
37
+ > 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.
38
+
39
+ This information and more can also be found on the [**OLMoE GitHub repository**](https://github.com/allenai/OLMoE).
40
+ - **Paper**: https://arxiv.org/abs/2409.02060
41
+ - **Pretraining** [Checkpoints](https://hf.co/allenai/OLMoE-1B-7B-0924), [Code](https://github.com/allenai/OLMo/tree/Muennighoff/MoE), [Data](https://huggingface.co/datasets/allenai/OLMoE-mix-0924) and [Logs](https://wandb.ai/ai2-llm/olmoe/reports/OLMoE-1B-7B-0924--Vmlldzo4OTcyMjU3).
42
+ - **SFT (Supervised Fine-Tuning)** [Checkpoints](https://huggingface.co/allenai/OLMoE-1B-7B-0924-SFT), [Code](https://github.com/allenai/open-instruct/tree/olmoe-sft), [Data](https://hf.co/datasets/allenai/tulu-v3.1-mix-preview-4096-OLMoE) and [Logs](https://github.com/allenai/OLMoE/blob/main/logs/olmoe-sft-logs.txt).
43
+ - **DPO/KTO (Direct Preference Optimization/Kahneman-Tversky Optimization)**, [Checkpoints](https://huggingface.co/allenai/OLMoE-1B-7B-0924-Instruct), [Preference Data](https://hf.co/datasets/allenai/ultrafeedback_binarized_cleaned), [DPO code](https://github.com/allenai/open-instruct/tree/olmoe-sft), [KTO code](https://github.com/Muennighoff/kto/blob/master/kto.py) and [Logs](https://github.com/allenai/OLMoE/blob/main/logs/olmoe-dpo-logs.txt).
44
+
45
+ # Use
46
+
47
+ Install `transformers` **from source** until a release after [this PR](https://github.com/huggingface/transformers/pull/32406) & `torch` and run:
48
+
49
+ ```python
50
+ from transformers import OlmoeForCausalLM, AutoTokenizer
51
+ import torch
52
+
53
+ DEVICE = "cuda" if torch.cuda.is_available() else "cpu"
54
+
55
+ # Load different ckpts via passing e.g. `revision=step10000-tokens41B`
56
+ model = OlmoeForCausalLM.from_pretrained("allenai/OLMoE-1B-7B-0924").to(DEVICE)
57
+ tokenizer = AutoTokenizer.from_pretrained("allenai/OLMoE-1B-7B-0924")
58
+ inputs = tokenizer("Bitcoin is", return_tensors="pt")
59
+ inputs = {k: v.to(DEVICE) for k, v in inputs.items()}
60
+ out = model.generate(**inputs, max_length=64)
61
+ print(tokenizer.decode(out[0]))
62
+ # > # 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
63
+ ```
64
+
65
+ You can list all revisions/branches by installing `huggingface-hub` & running:
66
+ ```python
67
+ from huggingface_hub import list_repo_refs
68
+ out = list_repo_refs("allenai/OLMoE-1B-7B-0924")
69
+ branches = [b.name for b in out.branches]
70
+ ```
71
+
72
+ Important branches:
73
+ - `step1200000-tokens5033B`: Pretraining checkpoint used for annealing. There are a few more checkpoints after this one but we did not use them.
74
+ - `main`: Checkpoint annealed from `step1200000-tokens5033B` for 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).
75
+ - `fp32`: FP32 version of `main`. 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 for `main` you can use this one. You will find that it yields slightly different results but should perform around the same on benchmarks.
76
+
77
+ # Evaluation Snapshot
78
+
79
+ | Model | Active Params | Open Data | MMLU | HellaSwag | ARC-Chall. | ARC-Easy | PIQA | WinoGrande |
80
+ |-----------------------------|---------------|-----------|------|-----------|------------|----------|------|------------|
81
+ | **LMs with ~1B active parameters** | | | | | | | | |
82
+ | **OLMoE-1B-7B** | **1.3B** | **βœ…** | **54.1** | **80.0** | **62.1** | **84.2** | **79.8** | **70.2** |
83
+ | DCLM-1B | 1.4B | βœ… | 48.5 | 75.1 | 57.6 | 79.5 | 76.6 | 68.1 |
84
+ | TinyLlama-1B | 1.1B | βœ… | 33.6 | 60.8 | 38.1 | 69.5 | 71.7 | 60.1 |
85
+ | OLMo-1B (0724) | 1.3B | βœ… | 32.1 | 67.5 | 36.4 | 53.5 | 74.0 | 62.9 |
86
+ | Pythia-1B | 1.1B | βœ… | 31.1 | 48.0 | 31.4 | 63.4 | 68.9 | 52.7 |
87
+ | **LMs with ~2-3B active parameters** | | | | | | | | |
88
+ | Qwen1.5-3B-14B | 2.7B | ❌ | **62.4** | 80.0 | **77.4** | **91.6** | **81.0** | 72.3 |
89
+ | Gemma2-3B | 2.6B | ❌ | 53.3 | 74.6 | 67.5 | 84.3 | 78.5 | 71.8 |
90
+ | JetMoE-2B-9B | 2.2B | ❌ | 49.1 | **81.7** | 61.4 | 81.9 | 80.3 | 70.7 |
91
+ | DeepSeek-3B-16B | 2.9B | ❌ | 45.5 | 80.4 | 53.4 | 82.7 | 80.1 | **73.2** |
92
+ | StableLM-2B | 1.6B | ❌ | 40.4 | 70.3 | 50.6 | 75.3 | 75.6 | 65.8 |
93
+ | OpenMoE-3B-9B | 2.9B | βœ… | 27.4 | 44.4 | 29.3 | 50.6 | 63.3 | 51.9 |
94
+ | **LMs with ~7-9B active parameters** | | | | | | | | |
95
+ | Gemma2-9B | 9.2B | ❌ | **70.6** | **87.3** | **89.5** | **95.5** | **86.1** | **78.8** |
96
+ | Llama3.1-8B | 8.0B | ❌ | 66.9 | 81.6 | 79.5 | 91.7 | 81.1 | 76.6 |
97
+ | DCLM-7B | 6.9B | βœ… | 64.4 | 82.3 | 79.8 | 92.3 | 80.1 | 77.3 |
98
+ | Mistral-7B | 7.3B | ❌ | 64.0 | 83.0 | 78.6 | 90.8 | 82.8 | 77.9 |
99
+ | OLMo-7B (0724) | 6.9B | βœ… | 54.9 | 80.5 | 68.0 | 85.7 | 79.3 | 73.2 |
100
+ | Llama2-7B | 6.7B | ❌ | 46.2 | 78.9 | 54.2 | 84.0 | 77.5 | 71.7 |
101
+
102
+ # Citation
103
+
104
+ ```bibtex
105
+ @misc{muennighoff2024olmoeopenmixtureofexpertslanguage,
106
+ title={OLMoE: Open Mixture-of-Experts Language Models},
107
+ 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},
108
+ year={2024},
109
+ eprint={2409.02060},
110
+ archivePrefix={arXiv},
111
+ primaryClass={cs.CL},
112
+ url={https://arxiv.org/abs/2409.02060},
113
+ }
114
+ ```
115
+