BlinkDL commited on
Commit
ebb12a6
·
verified ·
1 Parent(s): b81213e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -1
README.md CHANGED
@@ -29,4 +29,66 @@ datasets:
29
 
30
  Use rwkv pip package 0.8.24+ for RWKV-6 inference: https://pypi.org/project/rwkv/ (pipeline = PIPELINE(model, "rwkv_vocab_v20230424") for rwkv-world models)
31
 
32
- Trained on same world-2 dataset as https://huggingface.co/BlinkDL/rwkv-5-world.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
 
30
  Use rwkv pip package 0.8.24+ for RWKV-6 inference: https://pypi.org/project/rwkv/ (pipeline = PIPELINE(model, "rwkv_vocab_v20230424") for rwkv-world models)
31
 
32
+ Online Demo 1: https://huggingface.co/spaces/BlinkDL/RWKV-Gradio-2
33
+
34
+ Online Demo 2: https://huggingface.co/spaces/BlinkDL/RWKV-Gradio-1
35
+
36
+ GUI: https://github.com/josStorer/RWKV-Runner (see Releases)
37
+
38
+ How it works: https://twitter.com/BlinkDL_AI/status/1685230712247795713
39
+
40
+ https://www.rwkv.com/
41
+
42
+ ## Model Description
43
+
44
+ RWKV-6 trained on 100+ world languages (70% English, 15% multilang, 15% code).
45
+
46
+ World = Some_Pile + Some_SlimPajama + Some_StarCoder + Some_OSCAR + All_Wikipedia + All_ChatGPT_Data_I_can_find
47
+
48
+ World v1 = 0.59T tokens
49
+
50
+ World v2 = 1.12T tokens
51
+
52
+ World v2.1 = 1.42T tokens
53
+
54
+ Recommended fine-tuning format (use \n for newlines):
55
+ ```
56
+ User: xxxxxxxxxxxxxxx
57
+
58
+ Assistant: xxxxxxxxxxxxxxx
59
+ xxxxxxxxxxxxxxx
60
+ xxxxxxxxxxxxxxx
61
+
62
+ User: xxxxxxxxxxxxxxx
63
+ xxxxxxxxxxxxxxx
64
+
65
+ Assistant: xxxxxxxxxxxxxxx
66
+ xxxxxxxxxxxxxxx
67
+ xxxxxxxxxxxxxxx
68
+ xxxxxxxxxxxxxxx
69
+ ```
70
+
71
+ A good chat prompt (better replace \n\n in xxx to \n, such that there will be no newlines in xxx):
72
+ ```
73
+ User: hi
74
+
75
+ Assistant: Hi. I am your assistant and I will provide expert full response in full details. Please feel free to ask any question and I will always answer it.
76
+
77
+ User: xxx
78
+
79
+ Assistant:
80
+ ```
81
+ QA prompt (better replace \n\n in xxx to \n, such that there will be no newlines in xxx):
82
+ ```
83
+ Question: xxx
84
+
85
+ Answer:
86
+ ```
87
+ and
88
+ ```
89
+ Instruction: xxx
90
+
91
+ Input: xxx
92
+
93
+ Response:
94
+ ```