Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -8,8 +8,8 @@ description = "bigdata GPT"
|
|
| 8 |
examples = [["How are you?"]]
|
| 9 |
|
| 10 |
|
| 11 |
-
tokenizer = AutoTokenizer.from_pretrained("
|
| 12 |
-
model = AutoModelForCausalLM.from_pretrained("
|
| 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=[]):
|