Views
No views yet
Built with Llama. This repository contains only a GGUF quantization of the model — I did not train, fine-tune, or otherwise create the underlying model. All credit for the model belongs to the PLLuM consortium / HIVE AI (CYFRAGOVPL), who trained it on ~150B tokens of Polish text using the Bem2 HPC cluster. This upload exists solely to provide allama.cpp-compatible GGUF, which was not otherwise available for theinstruct-2512variant at the time of upload.
instruct (instruction-following; not the preference-aligned chat variant)LlamaForCausalLM — 80 layers, hidden 8192, 64 attn heads / 8 KV heads (GQA), 131072 context, rope theta 500000| Quant | Size | Notes |
|---|---|---|
| Q8_0 | ~75 GB | Highest practical fidelity; round-to-nearest, no imatrix |
llama.cpp:1python convert_hf_to_gguf.py ./Llama-PLLuM-70B-instruct-2512 \
2 --outfile Llama-PLLuM-70B-instruct-2512-Q8_0.gguf \
3 --outtype q8_0Llama base, this model does NOT use the standard Llama-3.1
header format (<|start_header_id|>...<|eot_id|>). It uses a Mistral-style
[INST] ... [/INST] template, embedded in the GGUF metadata. A system message
is folded into the first [INST] block, separated from the user content by
\n\n:<|begin_of_text|>[INST]{system}\n\n{user}[/INST]{assistant}<|end_of_text|><|begin_of_text|> (128000) · EOS: <|end_of_text|> (128001)llama-server detects and applies this template automatically from GGUF metadata.
If you bypass it, replicate the [INST] format above (do not use llama3 template).1# server
2llama-server -m Llama-PLLuM-70B-instruct-2512-Q8_0.gguf -c 16384 -ngl 99 --port 8080
3
4# OpenAI-compatible request (system folds into first [INST] automatically)
5curl http://localhost:8080/v1/chat/completions -H "Content-Type: application/json" -d '{
6 "messages": [
7 {"role": "system", "content": "Jesteś pomocnym asystentem."},
8 {"role": "user", "content": "Napisz krótkie podsumowanie."}
9 ],
10 "temperature": 0.1
11}'thinking = 0); for deterministic
tasks (extraction, correction) low temperature (0.0–0.2) is recommended.