AzureBlack commited on
Commit
c536009
1 Parent(s): b632b38

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -0
README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: llama2
3
+ ---
4
+
5
+ Exllama 2 version of the model created by the work of cgato
6
+
7
+ Original Model https://huggingface.co/cgato/Thespis-13b-v0.2
8
+
9
+ ---
10
+
11
+ This model is a bit of a personal project. It uses a vanilla chat template. This current version uses 45k samples from Dolphin and 45k samples from Pippa with with no filtering.
12
+ Then I did a second finetune on top with 2600 rounds of hand written RP conversation with various characters.
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|>{Your Username}: <|user-message|>\n<|bot|>{BotName}: <|bot-message|>\n
32
+ ```