CoolFace
Modelpublic

shoumenchougou/RWKV7-G1j-7.2B-GGUF

sourceHugging Faceapache-2.0updated 25d agoView on Hugging Face
1likes3.1kdownloads
Model Card

<!-- markdownlint-disable first-line-h1 --> <!-- markdownlint-disable html -->

<div align="center"> <a href="https://www.rwkv.com/"> <img src="assets/rwkv-logo.webp" width="140" alt="RWKV logo" /> </a> <h1>RWKV7-G1j-7.2B-GGUF</h1> <p><strong>RWKV-7 “Goose” for local inference with Ollama and llama.cpp</strong></p> </div>

<div align="center"> <a href="https://www.rwkv.com/"><img alt="RWKV website" src="https://img.shields.io/badge/Website-RWKV-16a7c9" /></a> <a href="https://huggingface.co/BlinkDL/rwkv7-g1"><img alt="Source model" src="https://img.shields.io/badge/Source-BlinkDL%2Frwkv7--g1-ffc107" /></a> <a href="https://github.com/BlinkDL/RWKV-LM"><img alt="RWKV GitHub" src="https://img.shields.io/badge/GitHub-RWKV--LM-181717?logo=github" /></a> <a href="https://arxiv.org/abs/2503.14456v2"><img alt="RWKV-7 paper" src="https://img.shields.io/badge/Paper-arXiv%3A2503.14456-b31b1b" /></a> <a href="./LICENSE"><img alt="Apache 2.0 license" src="https://img.shields.io/badge/License-Apache--2.0-4c8bf5" /></a> </div>


This repository provides the RWKV-7 G1j 7.2B base model in GGUF format for local text generation. Start with Q4_K_M, the formal Ollama default for this model size, or choose another file to balance storage, runtime memory, and weight precision.

[!IMPORTANT] This is a base language model, not a safety-aligned instruction-tuned assistant. The prompt formats below provide a conversational interface, but the model may not follow instructions consistently.

About RWKV-7

RWKV-7, also called Goose, is an attention-free recurrent language model. It keeps a constant-size recurrent state instead of an attention KV cache that grows with the preceding sequence. This gives RWKV constant recurrent-state size and constant inference work per generated token, while training remains parallelizable.

The fixed-state property describes the architecture's sequence state. Total memory use still depends on the selected weights, runtime, context configuration, batch size, and hardware backend.

G1j identifies this checkpoint revision. The original checkpoint is available from `BlinkDL/rwkv7-g1`. That immutable source file is 14,400,007,869 bytes with SHA-256 e3091a579c23ea7ebce9a0ad1ecfbda27082eeecd64d7f0474016e626df8f9c3.

Choose a file

FileSizeWhen to choose it
rwkv7-g1j-7.2b-Q4_K_M.gguf4.27 GiBRecommended starting point and the formal Ollama default for this model size.
rwkv7-g1j-7.2b-Q5_K_M.gguf5.02 GiBA middle option between Q4 and Q6.
rwkv7-g1j-7.2b-Q6_K.gguf5.81 GiBA larger quantized option when weight precision matters more than size.
rwkv7-g1j-7.2b-Q8_0.gguf7.39 GiBLargest quantized option in this repository.
rwkv7-g1j-7.2b-20260831-ctx16384-FP16.gguf13.48 GiBMostly-F16 weights; use when model size is less important.

Smaller quantizations generally reduce storage and runtime memory at the cost of some output quality. File size is not a guarantee of total RAM or VRAM use.

File integrity

FileBytesSHA-256
rwkv7-g1j-7.2b-Q4_K_M.gguf4,579,571,64868867d99a72f0551afb1457a185279f2e04d28f79506eb93c086cb0d8c714496
rwkv7-g1j-7.2b-Q5_K_M.gguf5,384,878,016ec834faf2ad932e97b79e9c155693bba826d22c5bce01ff14291ac1755dac47e
rwkv7-g1j-7.2b-Q6_K.gguf6,240,516,03249bfa14c78fea460a704a0bc0c262598a5c62227b20c013d369d1aa343036278
rwkv7-g1j-7.2b-Q8_0.gguf7,930,820,544c111ba650bd3199cec9fef5a05544e0ea3c95e05170902930b69a4062dca154a
rwkv7-g1j-7.2b-20260831-ctx16384-FP16.gguf14,473,934,7847abcb5bb5f9b428534590d69e7aa851ca92dbab161812f6e6e56338faf06be93

Verify a downloaded file with sha256sum <filename> on Linux or Get-FileHash <filename> -Algorithm SHA256 in PowerShell.

Run with Ollama

Install Ollama 0.33.2 or later with RWKV-7 support. The formal 7.2B setup uses the Q4_K_M file and the included Modelfile.ollama.

1. Download the model

With the Hugging Face `hf` CLI:

shell
hf download shoumenchougou/RWKV7-G1j-7.2B-GGUF rwkv7-g1j-7.2b-Q4_K_M.gguf Modelfile.ollama --local-dir rwkv7-g1j-7.2b
cd rwkv7-g1j-7.2b

You can instead download both files from the repository's file browser and place them in the same directory.

2. Create and run the Ollama model

shell
ollama create rwkv7-g1j:7.2b -f Modelfile.ollama
ollama run rwkv7-g1j:7.2b

The setup is complete when ollama create reports success and ollama run returns generated text. This release passed Q4KM import, embedded-template rendering in thinking and non-thinking modes, and non-empty generation with a 16,384-token context setting.

The included Modelfile selects Q4KM, declares the minimum Ollama version, records the license, and sets the release context and sampling defaults:

dockerfile
FROM ./rwkv7-g1j-7.2b-Q4_K_M.gguf
REQUIRES 0.33.2
LICENSE """
Apache License 2.0
https://www.apache.org/licenses/LICENSE-2.0
"""
PARAMETER num_ctx 16384
PARAMETER temperature 1
PARAMETER top_k 128
PARAMETER top_p 0.5
PARAMETER frequency_penalty 0.5
PARAMETER presence_penalty 0.5
PARAMETER repeat_penalty 1
PARAMETER stop """

"""

The Modelfile intentionally does not define TEMPLATE. The GGUF files must contain the validated Jinja chat template in tokenizer.chat_template; Ollama and llama.cpp can then read it directly from the selected model. Adding an external Ollama TEMPLATE would override that embedded source of truth.

Keep the stop value on three lines as shown. Ollama 0.33.2 parses the triple-quoted blank line as two newline characters; writing the escaped text \n\n instead stores literal backslashes.

See Ollama's official guides for importing a GGUF model and the complete Modelfile reference.

Run with llama.cpp

Use a recent llama.cpp build that recognizes the rwkv7 architecture. From the directory containing the GGUF file, run:

shell
llama-cli -m rwkv7-g1j-7.2b-Q4_K_M.gguf -c 16384 -n 256 -cnv

The files were structurally validated with the locked llama.cpp GGUF tooling. Runtime validation used the included Q4KM file through Ollama; direct llama.cpp generation was not part of this release check.

Prompt format

Runtimes that honor the embedded chat template apply the format automatically. After conversion, template inspection must confirm the standard and thinking-mode prefixes before publication.

For raw completion interfaces, use one of these generation prefixes.

Standard response:

text
User: Explain why recurrent models can use constant state.

Assistant:

Thinking response:

text
User: Solve the problem step by step.

Assistant: <think>

If your runtime requires explicit stop conditions, use token ID 0 or the text sequence \n\nUser:.

Context length

Use 16,384 tokens as the release context setting. Some GGUF inspection tools may display 1,048,576 from the RWKV-7 architecture metadata; that value is an architectural capacity field, not a claim that this checkpoint was trained or validated at that length.

If your runtime cannot allocate the requested context, lower the context value. This reduces the amount of preceding text available to the model.

Model details

FieldValue
ArchitectureRWKV-7 “Goose”
Checkpoint revisionG1j, released 2026-08-31
Model typeBase causal language model
Original checkpoint tensors1,062, all BF16
Original checkpoint parameters7,199,932,416
Expected GGUF tensor elements7,200,194,560
Layers32
Hidden size4,096
FFN size16,384
Heads / head size64 / 64
Vocabulary size65,536
Release context16,384 tokens
Expected format after conversionGGUF v3; 902 tensors
LicenseApache License 2.0

The effective head count is 64 (4,096 / 64). GGUF inspectors may also show rwkv7.attention.head_count = 0; llama.cpp reserves that field but does not use it for RWKV-7.

Compatibility and troubleshooting

SymptomWhat to do
The runtime reports an unknown rwkv7 architectureUpdate to a recent Ollama or llama.cpp build with RWKV-7 support.
Ollama cannot find the GGUF fileKeep Modelfile.ollama and the Q4KM file in the same directory, or change FROM to the correct path.
A valid GGUF cannot be opened from a Windows pathMove the files to a short ASCII-only path such as C:\models\rwkv7 and try again.
The model does not follow the requested instructionConfirm that the embedded template is active, or use the raw prompt format above. Remember that this is a base model.
The model does not fit in memoryUse Q4KM, close other memory-heavy applications, or reduce the configured context length.

Runtime support changes over time. All five files passed GGUF v3 structure, bounds, metadata, tensor-count, embedded-template, size, and SHA-256 validation. Q4KM additionally passed Ollama import, template rendering, and real generation.

Limitations

  • —Quantization can change model outputs, and the effect varies by task.
  • —This release does not claim systematic benchmark parity between quantizations.
  • —The model may produce inaccurate, biased, unsafe, or otherwise undesirable text.
  • —The model is not a substitute for qualified professional judgment in high-stakes settings.
  • —The presence of chat and thinking prompts does not make the base model reliably instruction-following or safety-aligned.

License

The model is distributed under the Apache License 2.0. Review the source repository and license terms before redistribution or deployment.

Links

Citation

bibtex
@misc{peng2025250314456,
  title         = {RWKV-7 "Goose" with Expressive Dynamic State Evolution},
  author        = {Bo Peng and Ruichong Zhang and Daniel Goldstein and Eric Alcaide and Xingjian Du and Haowen Hou and Jiaju Lin and Jiaxing Liu and Janna Lu and William Merrill and Guangyu Song and Kaifeng Tan and Saiteja Utpala and Nathan Wilce and Johan S. Wind and Tianyi Wu and Daniel Wuttke and Christian Zhou-Zheng},
  year          = {2025},
  eprint        = {2503.14456v2},
  archivePrefix = {arXiv},
  primaryClass  = {cs.CL},
  url           = {https://arxiv.org/abs/2503.14456v2},
}