Skip to content

Commit 3b63de9

Browse files
authored
[Model] Add OLMoE (vllm-project#7922)
1 parent 260d40b commit 3b63de9

File tree

3 files changed

+414
-0
lines changed

3 files changed

+414
-0
lines changed

docs/source/models/supported_models.rst

+4
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,10 @@ Decoder-only Language Models
127127
- Nemotron-3, Nemotron-4, Minitron
128128
- :code:`nvidia/Minitron-8B-Base`, :code:`mgoin/Nemotron-4-340B-Base-hf-FP8`, etc.
129129
- ✅︎
130+
* - :code:`OLMoEForCausalLM`
131+
- OLMoE
132+
- :code:`allenai/OLMoE-1B-7B-0924`, :code:`allenai/OLMoE-1B-7B-0924-Instruct`, etc.
133+
-
130134
* - :code:`OLMoForCausalLM`
131135
- OLMo
132136
- :code:`allenai/OLMo-1B-hf`, :code:`allenai/OLMo-7B-hf`, etc.

vllm/model_executor/models/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"MiniCPM3ForCausalLM": ("minicpm3", "MiniCPM3ForCausalLM"),
4747
"NemotronForCausalLM": ("nemotron", "NemotronForCausalLM"),
4848
"OlmoForCausalLM": ("olmo", "OlmoForCausalLM"),
49+
"OlmoeForCausalLM": ("olmoe", "OlmoeForCausalLM"),
4950
"OPTForCausalLM": ("opt", "OPTForCausalLM"),
5051
"OrionForCausalLM": ("orion", "OrionForCausalLM"),
5152
"PersimmonForCausalLM": ("persimmon", "PersimmonForCausalLM"),

0 commit comments

Comments
 (0)