Skip to content

Commit d0b4af6

Browse files
committed
chore(model): add rwkv-6-world-7b to the gallery
Signed-off-by: Ettore Di Giacinto <[email protected]>
1 parent 2b62260 commit d0b4af6

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed

gallery/index.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
11
---
2+
- &rwkv
3+
url: "github:mudler/LocalAI/gallery/rwkv.yaml@master"
4+
name: "rwkv-6-world-7b"
5+
license: apache-2.0
6+
urls:
7+
- https://huggingface.co/RWKV/rwkv-6-world-7b
8+
- https://huggingface.co/bartowski/rwkv-6-world-7b-GGUF
9+
tags:
10+
- llm
11+
- rwkv
12+
- cpu
13+
- gpu
14+
- rnn
15+
description: |
16+
RWKV (pronounced RwaKuv) is an RNN with GPT-level LLM performance, and can also be directly trained like a GPT transformer (parallelizable). We are at RWKV-7.
17+
So it's combining the best of RNN and transformer - great performance, fast inference, fast training, saves VRAM, "infinite" ctxlen, and free text embedding. Moreover it's 100% attention-free, and a Linux Foundation AI project.
18+
overrides:
19+
parameters:
20+
model: rwkv-6-world-7b-Q4_K_M.gguf
21+
files:
22+
- filename: rwkv-6-world-7b-Q4_K_M.gguf
23+
sha256: f74574186fa4584f405e92198605680db6ad00fd77974ffa14bf02073bb90273
24+
uri: huggingface://bartowski/rwkv-6-world-7b-GGUF/rwkv-6-world-7b-Q4_K_M.gguf
225
- &qwen25coder
326
name: "qwen2.5-coder-14b"
427
url: "github:mudler/LocalAI/gallery/chatml.yaml@master"

gallery/rwkv.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: "rwkv"
3+
4+
config_file: |
5+
parameters:
6+
top_k: 80
7+
temperature: 0.9
8+
max_tokens: 4098
9+
top_p: 0.8
10+
context_size: 4098
11+
12+
roles:
13+
user: "User: "
14+
system: "System: "
15+
assistant: "Assistant: "
16+
17+
stopwords:
18+
- 'Assistant:'
19+
20+
template:
21+
chat: "{{.Input}}\nAssistant: "
22+
completion: |
23+
{{.Input}}

0 commit comments

Comments
 (0)