saheedniyi commited on
Commit
a1726d9
1 Parent(s): 5705b52

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -54,7 +54,7 @@ when using the model it is important to use the chat template that the model was
54
 
55
  ```
56
  prompt = "INPUT YOUR PROMPT HERE"
57
- formatted_prompt=input_text=f"### BEGIN CONVERSATION ###\n\n## User: ##\n{prompt}\n\n## Assistant: ##\n"
58
  ```
59
 
60
  The model has a little tokenization issue and it's necessary to wtrite a function to clean the output to make it cleaner and more presentable.
 
54
 
55
  ```
56
  prompt = "INPUT YOUR PROMPT HERE"
57
+ formatted_prompt=f"### BEGIN CONVERSATION ###\n\n## User: ##\n{prompt}\n\n## Assistant: ##\n"
58
  ```
59
 
60
  The model has a little tokenization issue and it's necessary to wtrite a function to clean the output to make it cleaner and more presentable.