Spaces:
Runtime error
Runtime error
Commit
Β·
631705d
1
Parent(s):
0756211
Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ def predict(input, history=[]):
|
|
26 |
bot_input_ids = torch.cat([torch.LongTensor(history), new_user_input_ids], dim=-1)
|
27 |
|
28 |
# generate a response
|
29 |
-
history = model.generate(
|
30 |
|
31 |
# convert the tokens to text, and then split the responses into the right format
|
32 |
response = tokenizer.decode(history[0]).replace("<s>","").split("</s>")
|
|
|
26 |
bot_input_ids = torch.cat([torch.LongTensor(history), new_user_input_ids], dim=-1)
|
27 |
|
28 |
# generate a response
|
29 |
+
history = model.generate(new_user_input_ids , max_length=1000, pad_token_id=tokenizer.eos_token_id).tolist()
|
30 |
|
31 |
# convert the tokens to text, and then split the responses into the right format
|
32 |
response = tokenizer.decode(history[0]).replace("<s>","").split("</s>")
|