jayomb commited on
Commit
1fae3b3
·
verified ·
1 Parent(s): d8a041f

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - teknium/OpenHermes-2.5
5
+ language:
6
+ - en
7
+ ---
8
+ This is an RWKV-v5 ("Eagle") RNN language model pretrained on 7B of multi-lingual data and fine-tuned on Nous Research's OpenHermes 2.5 chat dataset.
9
+
10
+ The chat format is identical to the default HuggingFace format, **EXCEPT** that we replace the `<|im_start|>` and `<|im_end|>` special tokens with the unused ASCII codes `"\x16"` and `"\x17"` respectively. This was done to ensure complete compatibility withe standard RWKV World tokenizer.
11
+
12
+ An example interaction:
13
+ ```
14
+ \x16user
15
+ Write a poem about the beauty of mathematics in the style of Emily Dickinson.\x17
16
+ \x16assistant
17
+ In the heart of Numbers, so precise,
18
+ A Beauty dwells - both cool and nice.
19
+ An elegance that sings in sums,
20
+ And dances to algebraic drums.
21
+
22
+ Addition's grace, subtraction's might,
23
+ Multiplication's sheer delight,
24
+ Division's firm yet gentle hand,
25
+ All part of this enchanted land.
26
+
27
+ Infinity, a lover bold,
28
+ To whom the stars their secrets told,
29
+ While Zero, cloaked in mystery,
30
+ Unlocks each mathematical decree.
31
+
32
+ Fractals bloom like flowers wild,
33
+ Geometry, Nature's favored child,
34
+ Calculus, with steady gaze,
35
+ Maps out life's intricate maze.
36
+
37
+ Pi, an endless serenade,
38
+ In circles' arms forever laid,
39
+ And prime numbers,
40
+ standing lone,
41
+ Make the universe their own.
42
+
43
+ Each equation, theorem scribed,
44
+ In
45
+ parchment old or computer imbibed,
46
+ Is but a whisper from the skies,
47
+ A cosmic truth in disguise.\x17
48
+ ```
49
+ In the above, newlines are printed without escaping, while ASCII codes are escaped for readability.