Spaces:
Runtime error
Runtime error
MJ
commited on
Commit
·
154ba99
1
Parent(s):
2f1d4f5
Fixed typo, changed options to args in st.button
Browse files
app.py
CHANGED
@@ -65,7 +65,7 @@ claims = st.text_area(
|
|
65 |
)
|
66 |
|
67 |
st.button("Check Viability", on_click=get_patent_score,
|
68 |
-
|
69 |
|
70 |
st.markdown(body="Outcome: {}, Score: {}%".format(
|
71 |
st.session_state.viability, st.session_state.score))
|
|
|
65 |
)
|
66 |
|
67 |
st.button("Check Viability", on_click=get_patent_score,
|
68 |
+
args=(pipeline, abstract, claims))
|
69 |
|
70 |
st.markdown(body="Outcome: {}, Score: {}%".format(
|
71 |
st.session_state.viability, st.session_state.score))
|