GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

andreolf/Llama-3.2-1B-Instruct-GGUF overview

Llama 3.2 1B Instruct — GGUF Built with Llama. A Q4 K M GGUF quantization of Meta's Llama 3.2 1B Instruct https://huggingface.co/meta llama/Llama 3.2 1B Instru…

ggufllamallama-3.2quantizedllama.cppq4_k_mtext-generationbase_model:meta-llama/Llama-3.2-1B-Instructbase_model:finetune:meta-llama/Llama-3.2-1B-Instructlicense:llama3.2region:us
Downloads
0
Likes
0
Pipeline
text-generation
Author

Repository Files & Downloads

0 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
Browse files on Hugging Face

Model Details

Model IDandreolf/Llama-3.2-1B-Instruct-GGUF
Authorandreolf
Pipelinetext-generation
Licensellama3.2
Base modelmeta-llama/Llama-3.2-1B-Instruct
Last modified2026-08-21T16:33:37.000Z

Model README

---

license: llama3.2

base_model: meta-llama/Llama-3.2-1B-Instruct

tags:

  • gguf
  • llama
  • llama-3.2
  • quantized
  • llama.cpp
  • q4_k_m

pipeline_tag: text-generation

---

Llama-3.2-1B-Instruct — GGUF

Built with Llama.

A Q4_K_M GGUF quantization of Meta's

Llama-3.2-1B-Instruct,

for use with llama.cpp and compatible

runtimes (Ollama, LM Studio, llama-cpp-python, etc.).

Q4_K_M is the sweet spot for a 1B model — smallest footprint with still-solid

quality.

| File | Quant | Size | Notes |

|------|-------|------|-------|

| Llama-3.2-1B-Instruct-Q4_K_M.gguf | Q4_K_M | ~770 MB | Smallest, good quality |

Usage

llama.cpp

llama-cli -hf andreolf/Llama-3.2-1B-Instruct-GGUF:Q4_K_M -p "Hello!"

Ollama

ollama run hf.co/andreolf/Llama-3.2-1B-Instruct-GGUF:Q4_K_M

llama-cpp-python

from llama_cpp import Llama
llm = Llama.from_pretrained(
    repo_id="andreolf/Llama-3.2-1B-Instruct-GGUF",
    filename="Llama-3.2-1B-Instruct-Q4_K_M.gguf",
    n_ctx=4096,
)
print(llm.create_chat_completion(
    messages=[{"role": "user", "content": "Hello!"}]
)["choices"][0]["message"]["content"])

How it was made

Converted to an F16 GGUF with convert_hf_to_gguf.py, then quantized to Q4_K_M

with llama-quantize from llama.cpp. No

fine-tuning or modification was applied to the weights.

License & attribution

This is a quantized redistribution of Meta's Llama-3.2-1B-Instruct and is

governed by the Llama 3.2 Community License.

Llama 3.2 is licensed under the Llama 3.2 Community License, Copyright © Meta

Platforms, Inc. All Rights Reserved. All credit for the underlying model goes to

Meta; this repo only provides a GGUF conversion for convenience.

Run andreolf/Llama-3.2-1B-Instruct-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models