544 Downloads Updated 5 months ago
We introduce EXAONE Deep, which exhibits superior capabilities in various reasoning tasks including math and coding benchmarks, ranging from 2.4B to 32B parameters developed and released by LG AI Research. Evaluation results show that 1) EXAONE Deep 2.4B outperforms other models of comparable size, 2) EXAONE Deep 7.8B outperforms not only open-weight models of comparable scale but also a proprietary reasoning model OpenAI o1-mini, and 3) EXAONE Deep 32B demonstrates competitive performance against leading open-weight models.
For more details, please refer to our documentation, blog and GitHub.
This repository contains the various precisions of the reasoning 2.4B language model in GGUF format, which contains the following features:
Q8_0
, Q6_K
, Q5_K_M
, Q4_K_M
, IQ4_XS
in GGUF format (also includes BF16
weights)Here are the steps to run conversational inference with the model:
ollama run omercelik/exaone-deep:32b
Install llama.cpp. Please refer to the llama.cpp repository for more details.
Download EXAONE Deep model in GGUF format.
huggingface-cli download LGAI-EXAONE/EXAONE-Deep-2.4B-GGUF \
--include "EXAONE-Deep-2.4B-BF16*.gguf" \
--local-dir .
llama-cli -m ./EXAONE-Deep-2.4B-BF16.gguf \
-sys "" \
-c 32768 \
--temp 0.6 \
--top-p 0.95 \
--jinja \
--chat-template "{% for message in messages %}{% if loop.first and message['role'] != 'system' %}{{ '[|system|][|endofturn|]\n' }}{% endif %}{% set content = message['content'] %}{% if '</thought>' in content %}{% set content = content.split('</thought>')[-1].lstrip('\\n') %}{% endif %}{{ '[|' + message['role'] + '|]' + content }}{% if not message['role'] == 'user' %}{{ '[|endofturn|]' }}{% endif %}{% if not loop.last %}{{ '\n' }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ '\n[|assistant|]<thought>\n' }}{% endif %}"
Note
The EXAONE Deep models are trained with an optimized configuration, so we recommend following the Usage Guideline section to achieve optimal performance.
You can check the evaluation results of original EXAONE Deep models at GitHub or our documentation.
EXAONE Deep models can be inferred in the various frameworks, such as:
- TensorRT-LLM
- vLLM
- SGLang
- llama.cpp
- Ollama
- LM-Studio
Please refer to our EXAONE Deep GitHub for more details about the inference frameworks.
We provide the pre-quantized EXAONE Deep models with AWQ and several quantization types in GGUF format. Please refer to our EXAONE Deep collection to find corresponding quantized models.
To achieve the expected performance, we recommend using the following configurations:
<thought>\n
for reasoning steps. The model’s output quality may be degraded when you omit it. You can easily apply this feature by using tokenizer.apply_chat_template()
with add_generation_prompt=True
. Please check the example code on Quickstart section.<thought>\n...\n</thought>
usually have lots of tokens, so previous reasoning steps may be necessary to be removed in multi-turn situation. The provided tokenizer handles this automatically.temperature=0.6
and top_p=0.95
for generation.The EXAONE language model has certain limitations and may occasionally generate inappropriate responses. The language model generates responses based on the output probability of tokens, and it is determined during learning from training data. While we have made every effort to exclude personal, harmful, and biased information from the training data, some problematic content may still be included, potentially leading to undesirable responses. Please note that the text generated by EXAONE language model does not reflects the views of LG AI Research.
LG AI Research strives to reduce potential risks that may arise from EXAONE language models. Users are not allowed to engage in any malicious activities (e.g., keying in illegal information) that may induce the creation of inappropriate outputs violating LG AI’s ethical principles when using EXAONE language models.
The model is licensed under EXAONE AI Model License Agreement 1.1 - NC
@article{exaone-deep,
title={EXAONE Deep: Reasoning Enhanced Language Models},
author={{LG AI Research}},
journal={arXiv preprint arXiv:2503.12524},
year={2025}
}
LG AI Research Technical Support: contact_us@lgresearch.ai