winglian commited on
Commit
307ad62
1 Parent(s): 423b228

fix end token

Browse files
Files changed (1) hide show
  1. 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 = "</a>"
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
  )