fix end token
Browse files- instruct_pipeline.py +1 -1
instruct_pipeline.py
CHANGED
@@ -14,7 +14,7 @@ logger = logging.getLogger(__name__)
|
|
14 |
|
15 |
INSTRUCTION_KEY = "USER:"
|
16 |
RESPONSE_KEY = "ASSISTANT:"
|
17 |
-
END_KEY = "</
|
18 |
INTRO_BLURB = (
|
19 |
"A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions."
|
20 |
)
|
|
|
14 |
|
15 |
INSTRUCTION_KEY = "USER:"
|
16 |
RESPONSE_KEY = "ASSISTANT:"
|
17 |
+
END_KEY = "</s>"
|
18 |
INTRO_BLURB = (
|
19 |
"A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions."
|
20 |
)
|