Dochee commited on
Commit
4c346f8
1 Parent(s): a6c61d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,10 +9,10 @@ mdl = AutoModelForCausalLM.from_pretrained("microsoft/DialoGPT-medium")
9
 
10
 
11
 
12
- #chat_tkn = AutoTokenizer.from_pretrained("facebook/blenderbot-400M-distill")
13
 
14
 
15
- #mdl = BlenderbotForConditionalGeneration.from_pretrained("facebook/blenderbot-400M-distill")
16
 
17
 
18
  def converse(user_input, chat_history=[]):
 
9
 
10
 
11
 
12
+ chat_tkn = AutoTokenizer.from_pretrained("facebook/blenderbot-400M-distill")
13
 
14
 
15
+ mdl = BlenderbotForConditionalGeneration.from_pretrained("facebook/blenderbot-400M-distill")
16
 
17
 
18
  def converse(user_input, chat_history=[]):