dennis-fast commited on
Commit
5af6582
1 Parent(s): 32685c7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -13,9 +13,16 @@ def predict(input, history=[]):
13
 
14
  # append the new user input tokens to the chat history
15
  bot_input_ids = torch.cat([torch.LongTensor(history), new_user_input_ids], dim=-1)
16
-
17
  # generate a response
18
- history = model.generate(bot_input_ids, max_length=1000, pad_token_id=tokenizer.eos_token_id).tolist()
 
 
 
 
 
 
 
19
 
20
  # convert the tokens to text, and then split the responses into the right format
21
  response = tokenizer.decode(history[0]).split("<|endoftext|>")
 
13
 
14
  # append the new user input tokens to the chat history
15
  bot_input_ids = torch.cat([torch.LongTensor(history), new_user_input_ids], dim=-1)
16
+
17
  # generate a response
18
+ history = model.generate(bot_input_ids,
19
+ max_length=500,
20
+ pad_token_id=tokenizer.eos_token_id,
21
+ no_repeat_ngram_size=3,
22
+ do_sample=True,
23
+ top_k=100,
24
+ top_p=0.7,
25
+ temperature=0.8).tolist()
26
 
27
  # convert the tokens to text, and then split the responses into the right format
28
  response = tokenizer.decode(history[0]).split("<|endoftext|>")