Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,6 +3,8 @@ from transformers import pipeline
|
|
3 |
|
4 |
result = False
|
5 |
run_button = False
|
|
|
|
|
6 |
|
7 |
pipe = pipeline("question-answering", model="pierreguillou/bert-large-cased-squad-v1.1-portuguese")
|
8 |
|
@@ -18,8 +20,18 @@ if ((len(contexto)>0) & (len(questao)>0)):
|
|
18 |
result = pipe(question=questao, context=contexto)
|
19 |
if result:
|
20 |
st.write(result)
|
|
|
21 |
else:
|
22 |
pass
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
st.sidebar.header("About")
|
25 |
st.sidebar.subheader("Essa aplicação foi desenvolvida por Alexandre Vaz")
|
|
|
3 |
|
4 |
result = False
|
5 |
run_button = False
|
6 |
+
reiniciar = False
|
7 |
+
reset_button = False
|
8 |
|
9 |
pipe = pipeline("question-answering", model="pierreguillou/bert-large-cased-squad-v1.1-portuguese")
|
10 |
|
|
|
20 |
result = pipe(question=questao, context=contexto)
|
21 |
if result:
|
22 |
st.write(result)
|
23 |
+
reiniciar = True
|
24 |
else:
|
25 |
pass
|
26 |
|
27 |
+
if reiniciar:
|
28 |
+
reset_button = st.button("Reiniciar")
|
29 |
+
if reset_button:
|
30 |
+
result = False
|
31 |
+
run_button = False
|
32 |
+
reiniciar = False
|
33 |
+
contexto = ''
|
34 |
+
questao = ''
|
35 |
+
|
36 |
st.sidebar.header("About")
|
37 |
st.sidebar.subheader("Essa aplicação foi desenvolvida por Alexandre Vaz")
|