EmmaL1 commited on
Commit
69476a9
·
verified ·
1 Parent(s): 9b29271

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
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()