This repository contains
GGUF quantizations
of
Atlas-Coder-0.5B
— a coding-specialized language model fine-tuned from
Qwen2.5-Coder-0.5B
base using QLoRA on 80K decontaminated code instructions.
These GGUF files are optimized for
CPU inference
on consumer hardware using
llama.cpp
,
Ollama
, and
LM Studio
. No GPU required.
Highest quality
— 8-bit, near-lossless. Use if RAM allows.
Atlas-Coder-0.5B-Q6_K.gguf
Q6_K
506 MB
Best quality/size balance
— 6-bit K-quant. Recommended default.
Atlas-Coder-0.5B-Q5_K_M.gguf
Q5_K_M
420 MB
Great balance
— 5-bit medium K-quant. Minimal quality loss.
Atlas-Coder-0.5B-Q4_K_M.gguf
Q4_K_M
398 MB
Most compressed
— 4-bit medium K-quant. Best for low-RAM devices.
Which Quantization Should I Use?
Q8_0
→ Maximum fidelity, RAM not a concern, you want the closest to FP16 output
Q6_K
→ Best all-rounder. This is the one to use if you are unsure
Q5_K_M
→ Excellent quality at a smaller footprint. Barely distinguishable from Q6_K for most tasks
Q4_K_M
→ Minimum RAM usage. Still surprisingly capable for a 400MB file
All four files run comfortably on any modern laptop with 4GB+ RAM.
Quick Start
Ollama
# Download the model file first, then create a Modelfilecat > Modelfile << EOFFROM ./Atlas-Coder-0.5B-Q5_K_M.ggufSYSTEM "You are Atlas-Coder, an elite AI coding assistant created by Siddharth N.R. You write clean, efficient, and well-documented Python code. You specialize in code generation, completion, debugging, refactoring, algorithm implementation, and software engineering reasoning."PARAMETER temperature 0.3PARAMETER top_p 0.9PARAMETER repeat_penalty 1.1PARAMETER num_predict 512EOF
ollama create atlas-coder -f Modelfile
ollama run atlas-coder "Write a Python function to reverse a linked list"
LM Studio
Open LM Studio
Go to
Search
tab
Search for
Siddh07ETH/Atlas-Coder-0.5B-GGUF
Download your preferred quantization
Load and chat
llama.cpp (CLI)
# Clone and build llama.cpp
git clone https://github.com/ggerganov/llama.cpp
cd llama.cpp && make
# Run inference
./llama-cli \
-m Atlas-Coder-0.5B-Q5_K_M.gguf \
-p "<|im_start|>system\nYou are Atlas-Coder, an elite AI coding assistant.<|im_end|>\n<|im_start|>user\nWrite a Python binary search function.<|im_end|>\n<|im_start|>assistant\n" \
-n 512 \
--temp 0.3 \
--top-p 0.9 \
--repeat-penalty 1.1 \
--no-display-prompt
Python (llama-cpp-python)
from llama_cpp import Llama
llm = Llama(
model_path="Atlas-Coder-0.5B-Q5_K_M.gguf",
n_ctx=1024,
n_threads=4,
verbose=False,
)
prompt = """<|im_start|>systemYou are Atlas-Coder, an elite AI coding assistant created by Siddharth N.R. You write clean, efficient, and well-documented Python code.<|im_end|><|im_start|>userWrite a Python function to check if a number is prime.<|im_end|><|im_start|>assistant"""
output = llm(
prompt,
max_tokens=512,
temperature=0.3,
top_p=0.9,
repeat_penalty=1.1,
stop=["<|im_end|>", "<|im_start|>"],
)
print(output["choices"][0]["text"])
Recommended Generation Settings
Setting
Value
Reason
temperature
0.2–0.4
Conservative — reduces hallucinations in code
top_p
0.9
Focused vocabulary sampling
repeat_penalty
1.1
Prevents repetitive patterns
max_tokens
256–512
Sufficient for most coding tasks
ctx_size
1024
Matches training sequence length
Chat Template
Atlas-Coder uses
ChatML
format. Always wrap prompts in this structure:
<|im_start|>system
You are Atlas-Coder, an elite AI coding assistant created by Siddharth N.R. You write clean, efficient, and well-documented Python code. You specialize in code generation, completion, debugging, refactoring, algorithm implementation, and software engineering reasoning.<|im_end|>
<|im_start|>user
YOUR QUESTION HERE<|im_end|>
<|im_start|>assistant
Original Model
This GGUF repository is derived from the full FP16 model:
Atlas-Coder-0.5B is a coding-specialized LLM instruction-tuned from
Qwen2.5-Coder-0.5B
base
(not instruct) using QLoRA on a Tesla T4. Key training highlights:
80K samples
across 4 code datasets, including 50K execution-verified OSS-Instruct samples
n-gram Jaccard decontamination
against HumanEval — benchmark scores are honest
Response-only loss masking
— gradients only on assistant code output
Trained entirely on free Kaggle T4 GPU
— reproducible on consumer hardware
@misc{atlascoder2026,
author = {Siddharth N.R.},
title = {Atlas-Coder-0.5B: A QLoRA-Trained Sub-1B Coding Model from Base},
year = {2026},
publisher = {HuggingFace},
url = {https://huggingface.co/Siddh07ETH/Atlas-Coder-0.5B}
}
Atlas-Coder-0.5B-GGUF huggingface.co is an AI model on huggingface.co that provides Atlas-Coder-0.5B-GGUF's model effect (), which can be used instantly with this Pluto-AI-Labs Atlas-Coder-0.5B-GGUF model. huggingface.co supports a free trial of the Atlas-Coder-0.5B-GGUF model, and also provides paid use of the Atlas-Coder-0.5B-GGUF. Support call Atlas-Coder-0.5B-GGUF model through api, including Node.js, Python, http.
Atlas-Coder-0.5B-GGUF huggingface.co is an online trial and call api platform, which integrates Atlas-Coder-0.5B-GGUF's modeling effects, including api services, and provides a free online trial of Atlas-Coder-0.5B-GGUF, you can try Atlas-Coder-0.5B-GGUF online for free by clicking the link below.
Pluto-AI-Labs Atlas-Coder-0.5B-GGUF online free url in huggingface.co:
Atlas-Coder-0.5B-GGUF is an open source model from GitHub that offers a free installation service, and any user can find Atlas-Coder-0.5B-GGUF on GitHub to install. At the same time, huggingface.co provides the effect of Atlas-Coder-0.5B-GGUF install, users can directly use Atlas-Coder-0.5B-GGUF installed effect in huggingface.co for debugging and trial. It also supports api for free installation.
Atlas-Coder-0.5B-GGUF install url in huggingface.co: