Update app.py
Browse files
app.py
CHANGED
@@ -4,10 +4,10 @@ import gradio as gr
|
|
4 |
|
5 |
# Create a dictionary of models
|
6 |
MODELS = {
|
7 |
-
"
|
8 |
-
"
|
9 |
"GPT2": "datificate/gpt2-small-spanish",
|
10 |
-
"
|
11 |
}
|
12 |
|
13 |
# Define your function
|
|
|
4 |
|
5 |
# Create a dictionary of models
|
6 |
MODELS = {
|
7 |
+
"T5": "lmsys/fastchat-t5-3b-v1.0",
|
8 |
+
"Bert": "bert-base-multilingual-cased",
|
9 |
"GPT2": "datificate/gpt2-small-spanish",
|
10 |
+
"bloom":"bigscience/bloom"
|
11 |
}
|
12 |
|
13 |
# Define your function
|