GraySoft
Projects Models About FAQ Contact Download guIDE →

lgai-exaone/exaone-3.5-2.4b-instruct-gguf Q8_0 GGUF - Free GGUF Download is indexed on GraySoft with repository links, GGUF quant files, and Hugging Face metadata. This page helps you pick a local model for guIDE or other runtimes. See related models in the same shard below.

Model Intelligence Sheet

lgai-exaone/exaone-3.5-2.4b-instruct-gguf overview

Comprehensive model page for lgai-exaone/exaone-3.5-2.4b-instruct-gguf

transformersgguflg-aiexaoneexaone-3.5text-generationenkoarxiv:2412.04862license:otherendpoints_compatibleregion:usconversational
lgai-exaone/exaone-3.5-2.4b-instruct-gguf visual
Downloads
588
Likes
38
Pipeline
text-generation
Library
transformers
Visibility
Public
Access
Open

Repository Files & Downloads

6 files detected
Direct downloads for all repository files
FileTypeQuantizationSizeLink
EXAONE-3.5-2.4B-Instruct-BF16.gguf GGUF BF16 4.97 GB Download
EXAONE-3.5-2.4B-Instruct-IQ4_XS.gguf GGUF IQ4_XS 1.41 GB Download
EXAONE-3.5-2.4B-Instruct-Q4_K_M.gguf GGUF Q4_K_M 1.53 GB Download
EXAONE-3.5-2.4B-Instruct-Q5_K_M.gguf GGUF Q5_K_M 1.78 GB Download
EXAONE-3.5-2.4B-Instruct-Q6_K.gguf GGUF Q6_K 2.04 GB Download
EXAONE-3.5-2.4B-Instruct-Q8_0.gguf GGUF 2.64 GB Download

Related Quantizations

Model Details Live

Model Slug
lgai-exaone/exaone-3.5-2.4b-instruct-gguf
Author
LGAI-EXAONE
Pipeline Task
text-generation
Library
transformers
Created
2024-12-01
Last Modified
2024-12-09
Gated
No
Private
No
HF SHA
142acae803a41c206e8d0fa978c6102c748911bb
License
other
Language
en, ko
Base Model
EXAONE-3.5-2.4B-Instruct

Metadata Inspector

Normalized metadata (stored in metadata_json)
{
  "metadata": {},
  "card_data": {
    "base_model": "EXAONE-3.5-2.4B-Instruct",
    "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",
    "quantized_by": "LG-AI-EXAONE",
    "frontmatter": {
      "base_model": "EXAONE-3.5-2.4B-Instruct",
      "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",
      "quantized_by": "LG-AI-EXAONE"
    },
    "hero_image_url": "assets/EXAONE_Symbol+BI_3d.png",
    "summary": "",
    "quick_links": [],
    "benchmark_table_html": "",
    "readme_markdown": "---\nbase_model: EXAONE-3.5-2.4B-Instruct\nlicense: other\nlicense_name: exaone\nlicense_link: LICENSE\nlanguage:\n- en\n- ko\ntags:\n- lg-ai\n- exaone\n- exaone-3.5\npipeline_tag: text-generation\nlibrary_name: transformers\nquantized_by: LG-AI-EXAONE\n---\n\n<p align=\"center\">\n<img src=\"assets/EXAONE_Symbol+BI_3d.png\", width=\"300\", style=\"margin: 40 auto;\">\n<br>\n\n# EXAONE-3.5-2.4B-Instruct-GGUF\n\n## Introduction\n\nWe 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.\n\nFor more details, please refer to our [technical report](https://arxiv.org/abs/2412.04862), [blog](https://www.lgresearch.ai/blog/view?seq=507) and [GitHub](https://github.com/LG-AI-EXAONE/EXAONE-3.5).\n\nThis repository contains the various precisions of the instruction-tuned 2.4B language model in GGUF format, which contains the following features:\n\n- Number of Parameters (without embeddings): 2.14B\n- Number of Layers: 30\n- Number of Attention Heads: GQA with 32 Q-heads and 8 KV-heads\n- Vocab Size: 102,400\n- Context Length: 32,768 tokens\n- Quantization: `Q8_0`, `Q6_0`, `Q5_K_M`, `Q4_K_M`, `IQ4_XS` in GGUF format (also includes `BF16` weights)\n\n## Quickstart\n\nHere are the steps to run conversational inference with the model:\n\n1. Install llama.cpp. Please refer to the [llama.cpp repository](https://github.com/ggerganov/llama.cpp) for more details.\n\n2. Download EXAONE 3.5 model in GGUF format.\n\n```bash\nhuggingface-cli download LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct-GGUF \\\n    --include \"EXAONE-3.5-2.4B-Instruct-BF16*.gguf\" \\\n    --local-dir .\n```\n\n3. Run the model with llama.cpp in conversational mode.\n\n```bash\nllama-cli -cnv -m ./EXAONE-3.5-2.4B-Instruct-BF16.gguf \\\n    -p \"You are EXAONE model from LG AI Research, a helpful assistant.\"\n```\n\n> ### Note\n> The EXAONE 3.5 instruction-tuned language models were trained to utilize the system prompt,\n> so we highly recommend using the system prompts provided in the code snippet above.\n\n## Deployment\n\nEXAONE 3.5 models can be inferred in the various frameworks, such as:\n- `TensorRT-LLM`\n- `vLLM`\n- `SGLang`\n- `llama.cpp`\n- `Ollama`\n\nPlease refer to our [EXAONE 3.5 GitHub](https://github.com/LG-AI-EXAONE/EXAONE-3.5) for more details about the inference frameworks.\n\n## Quantization\n\nWe provide the pre-quantized EXAONE 3.5 models with **AWQ** and several quantization types in **GGUF** format. \nPlease refer to our [EXAONE 3.5 collection](https://huggingface.co/collections/LGAI-EXAONE/exaone-35-674d0e1bb3dcd2ab6f39dbb4) to find corresponding quantized models.\n\n## Limitation\n\nThe 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.\n\n- Inappropriate answers may be generated, which contain personal, harmful or other inappropriate information.\n- Biased responses may be generated, which are associated with age, gender, race, and so on.\n- The generated responses rely heavily on statistics from the training data, which can result in the generation of\nsemantically or syntactically incorrect sentences.\n- Since the model does not reflect the latest information, the responses may be false or contradictory.\n\nLG AI Research strives to reduce potential risks that may arise from EXAONE language models. Users are not allowed\nto engage in any malicious activities (e.g., keying in illegal information) that may induce the creation of inappropriate\noutputs violating LG AI’s ethical principles when using EXAONE language models.\n\n## License\n\nThe model is licensed under [EXAONE AI Model License Agreement 1.1 - NC](./LICENSE)\n\n## Citation\n \n```\n@article{exaone-3.5,\n  title={EXAONE 3.5: Series of Large Language Models for Real-world Use Cases},\n  author={LG AI Research},\n  journal={arXiv preprint arXiv:https://arxiv.org/abs/2412.04862},\n  year={2024}\n}\n```\n\n## Contact\nLG AI Research Technical Support: contact_us@lgresearch.ai\n",
    "related_quantizations": [
      {
        "id": "Felladrin/gguf-sharded-Q5_K_M-EXAONE-3.5-2.4B-Instruct",
        "author": "Felladrin",
        "downloads": null,
        "likes": null,
        "pipeline_tag": "",
        "library_name": "",
        "tags": []
      },
      {
        "id": "mitulagr2/gguf-sharded-Q5_K_M-EXAONE-3.5-2.4B-Instruct",
        "author": "mitulagr2",
        "downloads": null,
        "likes": null,
        "pipeline_tag": "",
        "library_name": "",
        "tags": []
      }
    ]
  },
  "tags": [
    "transformers",
    "gguf",
    "lg-ai",
    "exaone",
    "exaone-3.5",
    "text-generation",
    "en",
    "ko",
    "arxiv:2412.04862",
    "license:other",
    "endpoints_compatible",
    "region:us",
    "conversational"
  ],
  "likes": 38,
  "downloads": 588,
  "gated": false,
  "private": false,
  "last_modified": "2024-12-09T01:35:15.000Z",
  "created_at": "2024-12-01T11:18:07.000Z",
  "pipeline_tag": "text-generation",
  "library_name": "transformers"
}
Source payload excerpt (from Hugging Face API)
{
  "_id": "674c45ef04f4a6e8706e452a",
  "id": "LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct-GGUF",
  "modelId": "LGAI-EXAONE/EXAONE-3.5-2.4B-Instruct-GGUF",
  "sha": "142acae803a41c206e8d0fa978c6102c748911bb",
  "createdAt": "2024-12-01T11:18:07.000Z",
  "lastModified": "2024-12-09T01:35:15.000Z",
  "author": "LGAI-EXAONE",
  "downloads": 588,
  "likes": 38,
  "gated": false,
  "private": false,
  "pipeline_tag": "text-generation",
  "library_name": "transformers",
  "siblings_count": 10
}