lucyknada commited on
Commit
9c9e75c
·
verified ·
1 Parent(s): 6999ead

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ datasets:
3
+ - PygmalionAI/PIPPA
4
+ - lemonilia/LimaRP
5
+ ---
6
+
7
+ big thanks to lore for the 8xH100 gpus
8
+
9
+ ## training
10
+
11
+ base model is meta llama 3 8b instruct
12
+ trained on pippa then i trained that model on limarp, both at 8k context for 2 epochs each
13
+
14
+ ## gen settings
15
+
16
+ i would **start with** every sampler off and **temperature at 1 and just make min p 0.05**, i got good prompts from this but u can also try to gen settings from shori which are copy pasted below
17
+
18
+ - **Main choice** (may have repetition issues)
19
+ - **Temperature**: 1.0; **Min-P**: 0.05-0.10; **Presence Penalty**: 0.35-0.45
20
+ - **Alternative 1** (appears to solve repetition issues while being coherent, but reponses might possibly be less truthful)
21
+ - **Temperature**: 2.40-2.50; **Min-P**: 0.40; **Frequency penalty**: 0.10-0.15; Temperature last.
22
+ - **Alternative 2**
23
+ - **Mirostat type**: 2, **Mirostat Tau**: 2.80-3.00; **Mirostat Eta**: 0.0175-0.0200; neutralize or disable all other samplers
24
+
25
+ ## prompting
26
+
27
+ use the llama 3 instruct format
28
+
29
+ `<|eot_id|>` as stopping sequence/string/token
30
+
31
+ ST jsons:
32
+ [instruct](https://files.catbox.moe/ocnjb7.json)
33
+ [context](https://files.catbox.moe/hjkawf.json)
34
+
35
+ agnaistic prompt:
36
+ ```
37
+ <|begin_of_text|><|start_header_id|>system<|end_header_id|>{{#if system}}<|begin_of_text|><|start_header_id|>system<|end_header_id|>{{system}}<|eot_id|>{{/if}}Write {{char}}'s next reply in a fictional roleplay chat between {{#each bot}}{{.name}}, {{/each}}{{char}} and {{user}}.
38
+
39
+ {{char}}'s Persona: {{personality}}
40
+
41
+ {{#if memory}}
42
+ Important details:
43
+ {{memory}}
44
+ {{/if}}
45
+
46
+ {{#if example_dialogue}}This is how {{char}} should talk:
47
+ {{example_dialogue}}{{/if}}
48
+
49
+ This scenario of the conversation: {{scenario}}
50
+
51
+ Then the roleplay chat between {{#each bot}}{{.name}}, {{/each}}{{char}} and {{user}} begins.<|eot_id|>
52
+
53
+ {{#each msg}}{{#if .isbot}}<|start_header_id|>response<|end_header_id|>{{/if}}{{#if .isuser}}<|start_header_id|>user<|end_header_id|>{{/if}}{{.name}}: {{.msg}}<|eot_id|>
54
+ {{/each}}
55
+ {{#if ujb}}<|begin_of_text|><|start_header_id|>system<|end_header_id|>{{ujb}}<|eot_id|>{{/if}}
56
+ <|start_header_id|>response<|end_header_id|>{{post}}
57
+ ```