Spaces:
Runtime error
Runtime error
pierreguillou
commited on
Commit
·
4e520f3
1
Parent(s):
234c143
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ num_beams=1
|
|
13 |
early_stopping=True
|
14 |
|
15 |
title = "QA App | T5 base finetuned on SQuAD 1.1 in Portuguese"
|
16 |
-
description = "Forneça seu próprio
|
17 |
article = f"<div style='text-align: center; font-size: 90%;'><p>Link para o modelo <a style='color:blue;' href='https://huggingface.co/pierreguillou/t5-base-qa-squad-v1.1-portuguese' target='_blank'>T5 base QA in Portuguese</a></p><p>Blog post: <a style='color:blue;' href='' target='_blank'>NLP nas empresas | Como eu treinei um modelo T5 na tarefa QA em português no Google Colab</a> (26/01/2022)</p><p>BERT QA in Portuguese App by <a style='color:blue;' href='https://www.linkedin.com/in/pierreguillou/' target='_blank'>Pierre GUILLOU</a> | <a style='color:blue;' href='https://github.com/piegu/language-models#language-models' target='_blank'>Github Repo</a></p></div>"
|
18 |
allow_screenshot = False
|
19 |
allow_flagging = False
|
@@ -41,7 +41,7 @@ iface = gr.Interface(
|
|
41 |
allow_screenshot=allow_screenshot,
|
42 |
allow_flagging=allow_flagging,
|
43 |
fn=qa,
|
44 |
-
inputs=[gr.inputs.Textbox(label="
|
45 |
outputs=[gr.outputs.HTML(label="Resposta do modelo T5 base")],
|
46 |
)
|
47 |
|
|
|
13 |
early_stopping=True
|
14 |
|
15 |
title = "QA App | T5 base finetuned on SQuAD 1.1 in Portuguese"
|
16 |
+
description = "Forneça seu próprio texto e faça perguntas sobre ele. Quão bem o modelo responde? (esse aplicativo usa o modelo https://huggingface.co/pierreguillou/t5-base-qa-squad-v1.1-portuguese)"
|
17 |
article = f"<div style='text-align: center; font-size: 90%;'><p>Link para o modelo <a style='color:blue;' href='https://huggingface.co/pierreguillou/t5-base-qa-squad-v1.1-portuguese' target='_blank'>T5 base QA in Portuguese</a></p><p>Blog post: <a style='color:blue;' href='' target='_blank'>NLP nas empresas | Como eu treinei um modelo T5 na tarefa QA em português no Google Colab</a> (26/01/2022)</p><p>BERT QA in Portuguese App by <a style='color:blue;' href='https://www.linkedin.com/in/pierreguillou/' target='_blank'>Pierre GUILLOU</a> | <a style='color:blue;' href='https://github.com/piegu/language-models#language-models' target='_blank'>Github Repo</a></p></div>"
|
18 |
allow_screenshot = False
|
19 |
allow_flagging = False
|
|
|
41 |
allow_screenshot=allow_screenshot,
|
42 |
allow_flagging=allow_flagging,
|
43 |
fn=qa,
|
44 |
+
inputs=[gr.inputs.Textbox(label="Texto:", default=context, lines=5),gr.inputs.Textbox(label="Questão:", default=question, lines=1)],
|
45 |
outputs=[gr.outputs.HTML(label="Resposta do modelo T5 base")],
|
46 |
)
|
47 |
|