Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -1,15 +1,16 @@
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
-
|
5 |
|
6 |
-
def
|
7 |
-
|
8 |
-
|
|
|
9 |
|
10 |
gr.Interface(
|
11 |
-
|
12 |
-
inputs=gr.inputs.
|
13 |
-
outputs=gr.outputs.
|
14 |
-
title="
|
15 |
).launch()
|
|
|
1 |
import gradio as gr
|
2 |
from transformers import pipeline
|
3 |
|
4 |
+
nlp= pipeline(task="question-answering", model="mrm8488/distill-bert-base-spanish-wwm-cased-finetuned-spa-squad2-es")
|
5 |
|
6 |
+
def qnamodel(context,question):
|
7 |
+
question_set = {'context':context,'question':question}
|
8 |
+
results = nlp(question_set)
|
9 |
+
return results['answer']
|
10 |
|
11 |
gr.Interface(
|
12 |
+
qnamodel,
|
13 |
+
inputs=[gr.inputs.Textbox(label="Pon el texto a analizar aquí", max_lines=300), gr.inputs.Textbox(lines=2, label="Pregunta")],
|
14 |
+
outputs=gr.outputs.Textbox(label="Respuesta"),
|
15 |
+
title="Preguntas y respuestas",
|
16 |
).launch()
|