Views
No views yet
Qwen2.5-7B-Instruct + adelie-qwen-roleplay-v2-lora checkpoint.
Ships in a single 4.4 GB file — runs on a laptop without a GPU.Companion to the LoRA adapter atramyun/adelie-qwen-roleplay-v2-lora. The LoRA repo is for FP16 + GPU mounting; this GGUF is for laptops / end-users without CUDA.
1pip install llama-cpp-python --only-binary=:all: \
2 --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
3
4huggingface-cli download ramyun/adelie-qwen-roleplay-v2-gguf \
5 qwen-roleplay-v2.q4_k_m.gguf --local-dir ./models1from llama_cpp import Llama
2
3llm = Llama(
4 model_path="./models/qwen-roleplay-v2.q4_k_m.gguf",
5 n_ctx=4096,
6 n_threads=8,
7)
8out = llm.create_chat_completion(
9 messages=[
10 {"role": "system", "content": "당신은 판타지 세계의 냉소적인 잡화상 주인입니다."},
11 {"role": "user", "content": "할인 좀 안 돼요?"},
12 ],
13 temperature=0.7,
14)
15print(out["choices"][0]["message"]["content"])1huggingface-cli download ramyun/adelie-qwen-roleplay-v2-gguf \
2 qwen-roleplay-v2.q4_k_m.gguf \
3 --local-dir models/ours/qwen-roleplay-v2-gguf
4
5MODEL_PATH=models/ours/qwen-roleplay-v2-gguf/qwen-roleplay-v2.q4_k_m.gguf \
6PYTHONUTF8=1 .venv/Scripts/uvicorn core.api.app:app --port 8770| Source | merged FP16 (Qwen2.5-7B-Instruct + adelie-qwen-roleplay-v2-lora) |
| Method | llama.cpp convert_hf_to_gguf.py → quantize to q4_k_m |
| Original size | 14.5 GB (FP16) |
| Quantized size | 4.4 GB (3.25× compression) |
| Runtime VRAM | 0 (pure CPU) |
| Runtime RAM | ~5 GB |
recipe.md).temperature=0.7 and top_p=0.9. Greedy decoding (temperature=0) sometimes diverges on q4_k_m — known quantization artifact, mitigated by sampling.Qwen/Qwen2.5-7B-Instruct).1@software{adelieai_2026,
2 title = {AdelieAI: a persona engine for small-deployment LLMs},
3 author = {ramyun},
4 year = {2026},
5 url = {https://github.com/southglory/AdelieAI}
6}