Tonic commited on
Commit
a463a60
·
1 Parent(s): d0dbbcc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ description = "A State-of-the-Art Large-scale Pretrained Response generation mod
8
  examples = [["How are you?"]]
9
 
10
 
11
- tokenizer = AutoTokenizer.from_pretrained("PygmalionAI/pygmalion-2-7b")
12
  model = AutoModelForCausalLM.from_pretrained("PygmalionAI/pygmalion-2-7b")
13
 
14
 
 
8
  examples = [["How are you?"]]
9
 
10
 
11
+ tokenizer = AutoTokenizer.from_pretrained("PygmalionAI/pygmalion-2-7b", padding_side='left')
12
  model = AutoModelForCausalLM.from_pretrained("PygmalionAI/pygmalion-2-7b")
13
 
14