Commit
·
75c385f
1
Parent(s):
2f636a8
Update README.md
Browse files
README.md
CHANGED
@@ -4,12 +4,19 @@ license: llama2
|
|
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.
|
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 |
|
@@ -17,9 +24,9 @@ Prompt Format: Chat
|
|
17 |
```
|
18 |
{System Prompt}
|
19 |
|
20 |
-
Username: {
|
21 |
BotName: {Response}
|
22 |
-
Username: {
|
23 |
BotName: {Response}
|
24 |
|
25 |
```
|
@@ -28,5 +35,5 @@ BotName: {Response}
|
|
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|>{
|
32 |
```
|
|
|
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.3
|
8 |
|
9 |
+
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.
|
10 |
+
|
11 |
+
This model works best with internet style RP using standard markup with asterisks surrounding actions and no quotes around dialogue.
|
12 |
+
|
13 |
+
It uses the following data:
|
14 |
+
|
15 |
+
* 3000 samples from Claude Multiround Chat 30k dataset
|
16 |
+
* 6000 samples from Pippa Dataset
|
17 |
+
* 3000 samples from Puffin Dataset
|
18 |
+
* 3800 samples of hand curated RP conversation with various characters.
|
19 |
|
|
|
|
|
20 |
|
21 |
Works with standard chat format for Ooba or SillyTavern.
|
22 |
|
|
|
24 |
```
|
25 |
{System Prompt}
|
26 |
|
27 |
+
Username: {Input}
|
28 |
BotName: {Response}
|
29 |
+
Username: {Input}
|
30 |
BotName: {Response}
|
31 |
|
32 |
```
|
|
|
35 |
Turn Template (for Ooba):
|
36 |
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.
|
37 |
```
|
38 |
+
<|user|>{Username}: <|user-message|>\n<|bot|>{BotName}: <|bot-message|>\n
|
39 |
```
|