cgato commited on
Commit
4547b06
·
1 Parent(s): 6008d9a

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -0
README.md ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ It uses the following data:
4
+
5
+ 3000 samples from Claude Multiround Chat 30k dataset
6
+ 6000 samples from Pippa Dataset
7
+ 3000 samples from Puffin Dataset
8
+ 3800 samples of hand curated RP conversation with various characters.
9
+
10
+
11
+ Works with standard chat format for Ooba or SillyTavern.
12
+
13
+ Prompt Format: Chat
14
+ ```
15
+ {System Prompt}
16
+
17
+ Username: {input}
18
+ BotName: {Response}
19
+ Username: {input}
20
+ BotName: {Response}
21
+
22
+ ```
23
+
24
+
25
+ Turn Template (for Ooba):
26
+ 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.
27
+ ```
28
+ <|user|>{Username}: <|user-message|>\n<|bot|>{BotName}: <|bot-message|>\n
29
+ ```