kingabzpro commited on
Commit
8f22d74
1 Parent(s): 7b71091

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -8,8 +8,8 @@ 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
 
15
  def predict(input, history=[]):
 
8
  examples = [["How are you?"]]
9
 
10
 
11
+ tokenizer = AutoTokenizer.from_pretrained("microsoft/DialoGPT-large")
12
+ model = AutoModelForCausalLM.from_pretrained("microsoft/DialoGPT-large")
13
 
14
 
15
  def predict(input, history=[]):