Soumen commited on
Commit
6647ca5
·
1 Parent(s): 05e26c0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -82,19 +82,19 @@ def main():
82
  st.json(entity_result)
83
 
84
  # Sentiment Analysis
85
- elif st.checkbox("Show Sentiment Analysis"):
86
  st.subheader("Analyse Your Text")
87
  if st.button("Analyze"):
88
  blob = TextBlob(message)
89
  result_sentiment = blob.sentiment
90
  st.success(result_sentiment)
91
  #Text Corrections
92
- elif st.checkbox("Spell Corrections"):
93
  st.subheader("Correct Your Text")
94
  if st.button("Spell Corrections"):
95
  st.text("Using TextBlob ..")
96
  st.success(TextBlob(message).correct())
97
- elif st.checkbox("Text Generation"):
98
  st.subheader("Generate Text")
99
  if st.button("Generate"):
100
  tokenizer, model = load_models()
 
82
  st.json(entity_result)
83
 
84
  # Sentiment Analysis
85
+ if st.checkbox("Show Sentiment Analysis"):
86
  st.subheader("Analyse Your Text")
87
  if st.button("Analyze"):
88
  blob = TextBlob(message)
89
  result_sentiment = blob.sentiment
90
  st.success(result_sentiment)
91
  #Text Corrections
92
+ if st.checkbox("Spell Corrections"):
93
  st.subheader("Correct Your Text")
94
  if st.button("Spell Corrections"):
95
  st.text("Using TextBlob ..")
96
  st.success(TextBlob(message).correct())
97
+ if st.checkbox("Text Generation"):
98
  st.subheader("Generate Text")
99
  if st.button("Generate"):
100
  tokenizer, model = load_models()