Update README.md
Browse files
README.md
CHANGED
@@ -64,10 +64,10 @@ tokenizer = AutoTokenizer.from_pretrained(model_id)
|
|
64 |
# Text Generate Process
|
65 |
instruction = input("instruction: ")
|
66 |
inputs = input("input: ")
|
67 |
-
user = f"# instruction:\n{instruction}\n\n# input:\n{inputs}"
|
68 |
|
69 |
messages = [
|
70 |
-
{"role" : "system", "content" : ""},
|
71 |
{"role" : "user", "content" : user}
|
72 |
]
|
73 |
|
|
|
64 |
# Text Generate Process
|
65 |
instruction = input("instruction: ")
|
66 |
inputs = input("input: ")
|
67 |
+
user = f"# instruction:\n{instruction}\n\n# input:\n{inputs}" # The model uses this input template to quickly process various learning data and responses. (Therefore, if you do not use this template for input, the performance of Synapse-Model and the instructions of the persona may decline.)
|
68 |
|
69 |
messages = [
|
70 |
+
{"role" : "system", "content" : ""}, # You can write a custom SystemPrompt here. However, it will not work properly (because SystemPrompt has not been learned).
|
71 |
{"role" : "user", "content" : user}
|
72 |
]
|
73 |
|