Instructions to use shoumenchougou/RWKV7-G1h-13.3B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use shoumenchougou/RWKV7-G1h-13.3B-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf shoumenchougou/RWKV7-G1h-13.3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf shoumenchougou/RWKV7-G1h-13.3B-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf shoumenchougou/RWKV7-G1h-13.3B-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf shoumenchougou/RWKV7-G1h-13.3B-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf shoumenchougou/RWKV7-G1h-13.3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf shoumenchougou/RWKV7-G1h-13.3B-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf shoumenchougou/RWKV7-G1h-13.3B-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf shoumenchougou/RWKV7-G1h-13.3B-GGUF:Q4_K_M
Use Docker
docker model run hf.co/shoumenchougou/RWKV7-G1h-13.3B-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use shoumenchougou/RWKV7-G1h-13.3B-GGUF with Ollama:
ollama run hf.co/shoumenchougou/RWKV7-G1h-13.3B-GGUF:Q4_K_M
- Unsloth Studio
How to use shoumenchougou/RWKV7-G1h-13.3B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for shoumenchougou/RWKV7-G1h-13.3B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for shoumenchougou/RWKV7-G1h-13.3B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for shoumenchougou/RWKV7-G1h-13.3B-GGUF to start chatting
- Docker Model Runner
How to use shoumenchougou/RWKV7-G1h-13.3B-GGUF with Docker Model Runner:
docker model run hf.co/shoumenchougou/RWKV7-G1h-13.3B-GGUF:Q4_K_M
- Lemonade
How to use shoumenchougou/RWKV7-G1h-13.3B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull shoumenchougou/RWKV7-G1h-13.3B-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.RWKV7-G1h-13.3B-GGUF-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Add files using upload-large-folder tool
Browse files- .gitattributes +5 -0
- README.md +63 -0
- rwkv7-g1h-13.3b-20260710-ctx10240-FP16.gguf +3 -0
- rwkv7-g1h-13.3b-Q4_K_M.gguf +3 -0
- rwkv7-g1h-13.3b-Q5_K_M.gguf +3 -0
- rwkv7-g1h-13.3b-Q6_K.gguf +3 -0
- rwkv7-g1h-13.3b-Q8_0.gguf +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
rwkv7-g1h-13.3b-20260710-ctx10240-FP16.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
rwkv7-g1h-13.3b-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
rwkv7-g1h-13.3b-Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
rwkv7-g1h-13.3b-Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
rwkv7-g1h-13.3b-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
## 1️⃣ What are G0 / G1 / G1a2 / G1b / G1c / G1d / G1e / G1f / G1g / G1h ?
|
| 7 |
+
|
| 8 |
+
The fields like G0 / G1a / G1b in RWKV model names indicate versions of the training data. In terms of data quality, the ranking is: **G1h > G1g > G1f > G1e > G1d > G1c > G1b > G1a2 > G1a > G1 > G0a2 > G0**.
|
| 9 |
+
|
| 10 |
+
The RWKV7-G1a model is an advanced version of RWKV7-G1 that was further trained with 1T (1 trillion tokens) of high-quality inference and instruction data.
|
| 11 |
+
|
| 12 |
+
RWKV7-G1a2 was produced by continuing to add more data and training on top of RWKV7-G1a.
|
| 13 |
+
|
| 14 |
+
## 2️⃣ What is the difference between the RWKV7-G series and the World series?
|
| 15 |
+
|
| 16 |
+
The RWKV7-G series supports an inference mode, which can be activated using the following format:
|
| 17 |
+
|
| 18 |
+
```
|
| 19 |
+
User: USER_PROMPT
|
| 20 |
+
|
| 21 |
+
Assistant: <think
|
| 22 |
+
```
|
| 23 |
+
|
| 24 |
+
## 3️⃣ How to choose the best model?
|
| 25 |
+
|
| 26 |
+
**Look at the date in the model name** — for the same parameter size, a newer model is better!
|
| 27 |
+
|
| 28 |
+
For example, for the same 1.5B model, a G1a2 version released on `251005` will definitely be superior to a G1 version released on `250429`.
|
| 29 |
+
|
| 30 |
+
> [!WARNING]
|
| 31 |
+
> For the 0.1B and 0.4B models, we recommend using FP16/Q8_0 quantization. Otherwise, the models may fail to complete tasks due to precision loss caused by quantization.**
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
---
|
| 35 |
+
|
| 36 |
+
|
| 37 |
+
## 1️⃣ G0/G1/G1a2/G1b/G1c/G1d/G1e/G1f/G1g/G1h 是什么?
|
| 38 |
+
|
| 39 |
+
RWKV 模型名称中的 G0a/G1a/G1a2 等字段是训练数据的版本,数据质量排序:**G1h > G1g > G1f > G1e > G1d > G1c > G1b > G1a2 > G1a > G1 > G0a2 > G0** 。
|
| 40 |
+
|
| 41 |
+
RWKV7-G1a 模型是在 RWKV7-G1 模型的基础上继续训练了 1T 优质推理和指令数据的进阶版,RWKV7-G1a2 则是在 RWKV7-G1a 模型的基础上继续添加数据训练,以此类推。
|
| 42 |
+
|
| 43 |
+
## 2️⃣ RWKV7-G 系列和 World 系列有什么区别?
|
| 44 |
+
|
| 45 |
+
RWKV7-G 系列模型支持推理模式,可通过以下格式开启推理模式:
|
| 46 |
+
|
| 47 |
+
```
|
| 48 |
+
User: USER_PROMPT
|
| 49 |
+
|
| 50 |
+
Assistant: <think
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
## 3️⃣ 如何选择最好的模型?
|
| 54 |
+
|
| 55 |
+
**看模型名称中的日期**,相同的参数,模型越新越好!
|
| 56 |
+
|
| 57 |
+
比如同样是 1.5B 模型,发布于 `251005` 的 G1a2 版本必定优于 `250429` 的 G1 版本 。
|
| 58 |
+
|
| 59 |
+
> [!WARNING]
|
| 60 |
+
> 对于 0.1B 和 0.4B 模型,我们建议使用 FP16/Q8_0 量化类型。否则模型可能因量化带来的精度损失而无法完成任务。
|
| 61 |
+
|
| 62 |
+
|
| 63 |
+
|
rwkv7-g1h-13.3b-20260710-ctx10240-FP16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b22b9aa088e6ed023da2b994aad09269292ba64076efafabc4ac749d9caa042
|
| 3 |
+
size 26744537024
|
rwkv7-g1h-13.3b-Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f080114daa1e36dc8cc02e37ec8d3857498e7bd217a1d348a124be9b75119b4c
|
| 3 |
+
size 8457371584
|
rwkv7-g1h-13.3b-Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:12c7f4071b3527d681390191d85c363b9753480eade505d5756fd7aba4b4fb58
|
| 3 |
+
size 9992486848
|
rwkv7-g1h-13.3b-Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6628a9ba598d9a1ffe5590b0a50bc48daa9dc2ad202878c0eafbc2ed4eada95e
|
| 3 |
+
size 11623546816
|
rwkv7-g1h-13.3b-Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d4f5a981633fe07d10dd9660ca81a2bd5256cd3d834089416e19f7a38c031722
|
| 3 |
+
size 14727856064
|