Update app.py
Browse files
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
|
68 |
st.markdown("""
|
69 |
#### Description
|
70 |
-
This is a Natural Language Processing(NLP) Based
|
71 |
-
|
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!")
|