Sao10K commited on
Commit
5e67251
1 Parent(s): 3623907

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md CHANGED
@@ -39,3 +39,56 @@ SillyTavern Settings:
39
  Llama-3-Instruct-With-Names -->>>> Remove the Brackets in `[{{name}}]` or `[{{char}}]` or `[{{user}}]` within the instruction template to match the format used for training.
40
  ```
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  Llama-3-Instruct-With-Names -->>>> Remove the Brackets in `[{{name}}]` or `[{{char}}]` or `[{{user}}]` within the instruction template to match the format used for training.
40
  ```
41
 
42
+ ---
43
+
44
+ Example Dataset Entry:
45
+
46
+ ```
47
+ {
48
+ "token_length": x,
49
+ "Unique_chars": 3,
50
+ "conversations": [
51
+ {
52
+ "from": "system",
53
+ "value": "text"
54
+ },
55
+ {
56
+ "from": "human-chat",
57
+ "name": "User-1",
58
+ "value": "text"
59
+ },
60
+ {
61
+ "from": "gpt-chat",
62
+ "name": "User-2",
63
+ "value": "text"
64
+ },
65
+ {
66
+ "from": "human-chat",
67
+ "name": "User-3",
68
+ "value": "text"
69
+ },
70
+ {
71
+ "from": "gpt-chat",
72
+ "name": "User-2",
73
+ "value": "text"
74
+ },
75
+ {
76
+ "from": "human-chat",
77
+ "name": "User-1",
78
+ "value": "text"
79
+ },
80
+ {
81
+ "from": "gpt-chat",
82
+ "name": "User-3",
83
+ "value": "text"
84
+ },
85
+ {
86
+ "from": "gpt-chat",
87
+ "name": "User-2",
88
+ "value": "text"
89
+ }
90
+ ]
91
+ },
92
+ ```
93
+
94
+