Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Missing BOS token?
Browse filesI believe you're missing the very first `<s>` BOS token.
app.py
CHANGED
@@ -35,7 +35,7 @@ examples=[
|
|
35 |
|
36 |
def predict(message, chatbot):
|
37 |
|
38 |
-
input_prompt = f"[INST] <<SYS>>\n{system_message}\n<</SYS>>\n\n "
|
39 |
for interaction in chatbot:
|
40 |
input_prompt = input_prompt + str(interaction[0]) + " [/INST] " + str(interaction[1]) + " </s><s> [INST] "
|
41 |
|
|
|
35 |
|
36 |
def predict(message, chatbot):
|
37 |
|
38 |
+
input_prompt = f"<s>[INST] <<SYS>>\n{system_message}\n<</SYS>>\n\n "
|
39 |
for interaction in chatbot:
|
40 |
input_prompt = input_prompt + str(interaction[0]) + " [/INST] " + str(interaction[1]) + " </s><s> [INST] "
|
41 |
|