Soumen commited on
Commit
333985e
·
1 Parent(s): a34853c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -64,11 +64,11 @@ def entity_analyzer(my_text):
64
  allData = ['"Token":{},\n"Entities":{}'.format(tokens,entities)]
65
  return allData
66
  def main():
67
- """ NLP Based App with Streamlit """
68
  st.markdown("""
69
  #### Description
70
- This is a Natural Language Processing(NLP) Based App useful for basic NLP task
71
- NER,Sentiment, Spell Corrections and Summarization
72
  """)
73
  # Entity Extraction
74
  text = st.text_input("Type your text!")
 
64
  allData = ['"Token":{},\n"Entities":{}'.format(tokens,entities)]
65
  return allData
66
  def main():
67
+ """ NLP Based Application with Streamlit """
68
  st.markdown("""
69
  #### Description
70
+ This is a Natural Language Processing(NLP) Based Application useful for basic NLP tasks
71
+ Named Entity Recognition, Sentiment Analysis, Spell Corrections, Human Level Text Generation, and Summarization
72
  """)
73
  # Entity Extraction
74
  text = st.text_input("Type your text!")