Help preserve open and free AI for humanity's future

← All models

LGAI-EXAONE_EXAONE-3.5-7.8B-Instruct

LGAI-EXAONE · View on Hugging Face ↗

EXAONE 3.5 instruct LLM (7.8B) from LG AI Research — bilingual Korean/English dialogue.

✓ verified · rehash-vs-hf-metadata at 2026-08-23T03:48:48Z

custom/other license29.13 GB (31,282,342,093 bytes)transformerssafetensorsexaonetext-generationlg-aiexaone-3.5conversationalcustom_codeeval-results2 languages (en, ko)paper: 2412.04862

Get this model

Download LGAI-EXAONE_EXAONE-3.5-7.8B-Instruct.torrent

Recommended — the .torrent carries the webseed url-list, so your client can fall back to plain HTTPS if the swarm is thin. See/verify for the full download + verification walkthrough.

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: other license_name: exaone license_link: LICENSE language:

  • en
  • ko tags:
  • lg-ai
  • exaone
  • exaone-3.5 pipeline_tag: text-generation library_name: transformers


EXAONE-3.5-7.8B-Instruct

Introduction

We introduce EXAONE 3.5, a collection of instruction-tuned bilingual (English and Korean) generative models ranging from 2.4B to 32B parameters, developed and released by LG AI Research. EXAONE 3.5 language models include: 1) 2.4B model optimized for deployment on small or resource-constrained devices, 2) 7.8B model matching the size of its predecessor but offering improved performance, and 3) 32B model delivering powerful performance. All models support long-context processing of up to 32K tokens. Each model demonstrates state-of-the-art performance in real-world use cases and long-context understanding, while remaining competitive in general domains compared to recently released models of similar sizes.

For more details, please refer to our technical report, blog and GitHub.

This repository contains the instruction-tuned 7.8B language model with the following features:

  • Number of Parameters (without embeddings): 6.98B
  • Number of Layers: 32
  • Number of Attention Heads: GQA with 32 Q-heads and 8 KV-heads
  • Vocab Size: 102,400
  • Context Length: 32,768 tokens

Quickstart

We recommend to use transformers v4.43 or later.

Here is the code snippet to run conversational inference with the model:

import torch
from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct"

model = AutoModelForCausalLM.from_pretrained(
    model_name,
    torch_dtype=torch.bfloat16,
    trust_remote_code=True,
    device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained(model_name)

# Choose your prompt
prompt = "Explain how wonderful you are"  # English example
prompt = "스스로를 자랑해 봐"       # Korean example

messages = [
    {"role": "system", 
     "content": "You are EXAONE model from LG AI Research, a helpful assistant."},
    {"role": "user", "content": prompt}
]
input_ids = tokenizer.apply_chat_template(
    messages,
    tokenize=True,
    add_generation_prompt=True,
    return_tensors="pt"
)

output = model.generate(
    input_ids.to("cuda"),
    eos_token_id=tokenizer.eos_token_id,
    max_new_tokens=128,
    do_sample=False,
)
print(tokenizer.decode(output[0]))

Note

The EXAONE 3.5 instruction-tuned language models were trained to utilize the system prompt, so we highly recommend using the system prompts provided in the code snippet above.

Evaluation

The following table shows the evaluation results of real-world use cases. The full evaluation results can be found in the technical report.

Models MT-Bench LiveBench Arena-Hard AlpacaEval IFEval KoMT-Bench[1] LogicKor
EXAONE 3.5 7.8B 8.29 39.8 68.7 54.2 78.9 7.96 9.08
Qwen 2.5 7B 6.48 35.6 48.9 31.7 72.5 5.19 6.38
Llama 3.1 8B 7.59 28.3 27.7 25.7 74.5 4.85 5.99
Gemma 2 9B 7.64 32.1 43.6 47.3 54.7 7.10 8.05
Phi 3 small (7B) 7.63 27.9 26.8 29.2 59.5 3.22 3.99
  • [1] KoMT-Bench is a dataset created by translating MT-Bench into Korean; see README for more details.

Deployment

EXAONE 3.5 models can be inferred in the various frameworks, such as:

  • TensorRT-LLM
  • vLLM
  • SGLang
  • llama.cpp
  • Ollama

Please refer to our EXAONE 3.5 GitHub for more details about the inference frameworks.

Quantization

We provide the pre-quantized EXAONE 3.5 models with AWQ and several quantization types in GGUF format. Please refer to our EXAONE 3.5 collection to find corresponding quantized models.

Limitation

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.

  • Inappropriate answers may be generated, which contain personal, harmful or other inappropriate information.
  • Biased responses may be generated, which are associated with age, gender, race, and so on.
  • The generated responses rely heavily on statistics from the training data, which can result in the generation of semantically or syntactically incorrect sentences.
  • Since the model does not reflect the latest information, the responses may be false or contradictory.

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.

License

The model is licensed under EXAONE AI Model License Agreement 1.1 - NC

Citation

@article{exaone-3.5,
  title={EXAONE 3.5: Series of Large Language Models for Real-world Use Cases},
  author={LG AI Research},
  journal={arXiv preprint arXiv:https://arxiv.org/abs/2412.04862},
  year={2024}
}

Contact

LG AI Research Technical Support: [email protected]

Magnet link (secondary — no webseeds)

Opens the swarm directly, but carries no webseed url-list. Prefer the.torrent download above — HTTP fallback seeds ride inside it.

magnet:?xt=urn:btih:e18157dd38d116c7b8a4289fd7475b76fea473f4&dn=LGAI-EXAONE_EXAONE-3.5-7.8B-Instruct

Open magnet in torrent client · infohash e18157dd38d116c7b8a4289fd7475b76fea473f4

Files & hashes

PathSizeMethodHash
LICENSE13.5 KB (13,779 B)sha1-git-blob6a427ac37e7f4c72a007a488f26854139873c1c2
README.md7.3 KB (7,446 B)sha1-git-blob2ad9ab042bf274ece7f3eec24540d805ea77f20b
assets/EXAONE_Symbol+BI_3d.png243.2 KB (249,084 B)sha1-git-blobd2a9060ce75f277098db664c9d33466c707d7acf
config.json1.0 KB (1,048 B)sha1-git-blob1cd1aeac75ea0bcb9101dd49eda8b7d30982411d
configuration_exaone.py11.1 KB (11,340 B)sha1-git-blob3388c2e5922ca7f190e5f13f7a997415c693139d
generation_config.json134 B (134 B)sha1-git-blob0957bba17ccf1e6322403845947069b47b12ee0c
merges.txt1.2 MB (1,219,196 B)sha1-git-blobed11ef1d7af53e8b9f299b56525e90c7c9ec7c87
model-00001-of-00007.safetensors4.59 GB (4,932,636,680 B)sha256-lfs71dc95e1059012ebde92157813addd2dff67a65397006fbe40f9831e8d3f5ce4
model-00002-of-00007.safetensors4.66 GB (4,999,813,040 B)sha256-lfs8ef9bd31e3c04d770649d702911a5012d09c4724d2a2f53263ecb13f8e509ea9
model-00003-of-00007.safetensors4.66 GB (4,999,813,080 B)sha256-lfsaaf06cc5421d5df7a910401b6ca7b681bf1493ce1a5f0330cb5927a139cb85c6
model-00004-of-00007.safetensors4.50 GB (4,832,007,464 B)sha256-lfs56c2f5f1fed37d3c2b9580a502d1d65e50572ae70e7611afaf033ff96e515035
model-00005-of-00007.safetensors4.66 GB (4,999,813,088 B)sha256-lfs7d188c5e23a73ff28b413278a43b24679904cf788ebfd4f1c6ea247409f58dd4
model-00006-of-00007.safetensors4.50 GB (4,832,023,944 B)sha256-lfsd54a029c73a57967f4268d423a44995eaec658b9ab0e3f82422175f9f2dcc10c
model-00007-of-00007.safetensors1.56 GB (1,677,721,728 B)sha256-lfsd7ecfd58db4d85b261e708e0ce016838bdaa537729b9a24804a72fa609f61cda
model.safetensors.index.json23.2 KB (23,729 B)sha1-git-blobc10966a43995835df33ebc7689668846ddcb3e59
modeling_exaone.py23.4 KB (24,000 B)sha1-git-blobf68c40c1af5f6926eff1ab052037fb77d8cc9613
special_tokens_map.json563 B (563 B)sha1-git-blobb652595ae5763f20e576d46f7a6512b5d76b0f17
tokenizer.json4.7 MB (4,957,806 B)sha1-git-blob25afac7264d2a8fb83c802bfb37096f9d6a79793
tokenizer_config.json69.1 KB (70,718 B)sha1-git-blob5758f38dcddf7719ce1cf88e937afe9ff962c10b
vocab.json1.8 MB (1,934,226 B)sha1-git-blobf13a6d3f2ce1811586249e6f3e26d9317854ca93

Provenance

Upstream repositoryLGAI-EXAONE/EXAONE-3.5-7.8B-Instruct
Revision (pinned)553ea250b9a5317231459279d5847d6cf955b9aa
Fetched at2026-08-23T03:30:04Z
License at fetchother
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

Webseeds