Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -63,4 +63,8 @@ def textclassification():
|
|
| 63 |
qa_result = qa_pipeline(qa_input)
|
| 64 |
st.write(f"**Key Reasons:** {qa_result['answer']}")
|
| 65 |
|
| 66 |
-
def main
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
qa_result = qa_pipeline(qa_input)
|
| 64 |
st.write(f"**Key Reasons:** {qa_result['answer']}")
|
| 65 |
|
| 66 |
+
def main():
|
| 67 |
+
textclassification()
|
| 68 |
+
|
| 69 |
+
if __name__ == "__main__":
|
| 70 |
+
main()
|