cgato commited on
Commit
d17891a
1 Parent(s): ed3427e

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ This model is a bit of a personal project. It uses a vanilla chat template and is focused on providing multiturn sfw and nsfw RP experience.
2
+
3
+ This model works best with internet style RP using standard markup with asterisks surrounding actions and no quotes around dialogue.
4
+
5
+ It uses the following data:
6
+
7
+ * 3000 samples from Claude Multiround Chat 30k dataset
8
+ * 3000 samples from Pippa Dataset
9
+ * 2200 samples from Puffin Dataset
10
+ * 700 samples from Airoboros 3.1
11
+ * 4700 samples of hand curated RP conversation with various characters.
12
+
13
+
14
+ Works with standard chat format for Ooba or SillyTavern.
15
+
16
+ Prompt Format: Chat
17
+ ```
18
+ {System Prompt}
19
+
20
+ Username: {Input}
21
+ BotName: {Response}
22
+ Username: {Input}
23
+ BotName: {Response}
24
+
25
+ ```
26
+
27
+
28
+ Turn Template (for Ooba):
29
+ You can either bake usernames into the prompt directly for ease of use or programatically add them if running through the API to use as a chatbot.
30
+ ```
31
+ <|user|>{Username}: <|user-message|>\n<|bot|>{BotName}: <|bot-message|>\n
32
+ ```