duyntnet commited on
Commit
89365aa
·
verified ·
1 Parent(s): d626708

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +35 -0
README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ language:
4
+ - en
5
+ pipeline_tag: text-generation
6
+ inference: false
7
+ tags:
8
+ - transformers
9
+ - gguf
10
+ - imatrix
11
+ - pygmalion-2-7b
12
+ ---
13
+ Quantizations of https://huggingface.co/PygmalionAI/pygmalion-2-7b
14
+
15
+
16
+ # From original readme
17
+
18
+ ## Prompting
19
+
20
+ The model has been trained on prompts using three different roles, which are denoted by the following tokens: `<|system|>`, `<|user|>` and `<|model|>`.
21
+
22
+ The `<|system|>` prompt can be used to inject out-of-channel information behind the scenes, while the `<|user|>` prompt should be used to indicate user input.
23
+ The `<|model|>` token should then be used to indicate that the model should generate a response. These tokens can happen multiple times and be chained up to
24
+ form a conversation history.
25
+
26
+ ### Prompting example
27
+
28
+ The system prompt has been designed to allow the model to "enter" various modes and dictate the reply length. Here's an example:
29
+
30
+ ```
31
+ <|system|>Enter RP mode. Pretend to be {{char}} whose persona follows:
32
+ {{persona}}
33
+
34
+ You shall reply to the user while staying in character, and generate long responses.
35
+ ```