MJ commited on
Commit
284bfb4
·
1 Parent(s): 69fa4a3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ description = "Building open-domain chatbots is a challenging area for machine l
8
  examples = [["How are you?"]]
9
 
10
 
11
- tokenizer = AutoTokenizer.from_pretrained("facebook/blenderbot-400M-distill")
12
  model = AutoModelForCausalLM.from_pretrained("facebook/blenderbot-400M-distill")
13
 
14
 
 
8
  examples = [["How are you?"]]
9
 
10
 
11
+ tokenizer = AutoTokenizer.from_pretrained("facebook/blenderbot-400M-distill", padding_side='left)
12
  model = AutoModelForCausalLM.from_pretrained("facebook/blenderbot-400M-distill")
13
 
14