Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ import torch
|
|
6 |
import torch
|
7 |
|
8 |
chat_tkn = AutoTokenizer.from_pretrained("facebook/blenderbot-400M-distill")
|
9 |
-
mdl =
|
10 |
|
11 |
def converse(user_input, chat_history=[]):
|
12 |
|
|
|
6 |
import torch
|
7 |
|
8 |
chat_tkn = AutoTokenizer.from_pretrained("facebook/blenderbot-400M-distill")
|
9 |
+
mdl = BlenderbotForConditionalGeneration.from_pretrained("facebook/blenderbot-400M-distill")
|
10 |
|
11 |
def converse(user_input, chat_history=[]):
|
12 |
|