Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
"""
|
2 |
-
|
3 |
-
Credits: Streamlit Team,Marc Skov Madsen(For Awesome-streamlit gallery)
|
4 |
Description
|
5 |
This is a Natural Language Processing(NLP) Based App useful for basic NLP concepts such as follows;
|
6 |
|
@@ -10,7 +10,7 @@ This is a Natural Language Processing(NLP) Based App useful for basic NLP concep
|
|
10 |
|
11 |
+ Sentiment Analysis using TextBlob
|
12 |
|
13 |
-
+ Document/Text Summarization using Gensim/T5
|
14 |
|
15 |
This is built with Streamlit Framework, an awesome framework for building ML and NLP tools.
|
16 |
Purpose
|
@@ -122,7 +122,7 @@ def main():
|
|
122 |
#img = cv2.imread("scholarly_text.jpg")
|
123 |
text = message
|
124 |
# Summarization
|
125 |
-
if st.checkbox("Mark here, Text Summarization for English
|
126 |
#st.subheader("Summarize Your Text for English and Bangla Texts!")
|
127 |
#message = st.text_area("Enter the Text","Type please ..")
|
128 |
#st.text("Using Gensim Summarizer ..")
|
|
|
1 |
"""
|
2 |
+
#App: NLP App with Streamlit
|
3 |
+
Credits: Streamlit Team, Marc Skov Madsen(For Awesome-streamlit gallery)
|
4 |
Description
|
5 |
This is a Natural Language Processing(NLP) Based App useful for basic NLP concepts such as follows;
|
6 |
|
|
|
10 |
|
11 |
+ Sentiment Analysis using TextBlob
|
12 |
|
13 |
+
+ Document/Text Summarization using Gensim/T5 for both Bangla and english
|
14 |
|
15 |
This is built with Streamlit Framework, an awesome framework for building ML and NLP tools.
|
16 |
Purpose
|
|
|
122 |
#img = cv2.imread("scholarly_text.jpg")
|
123 |
text = message
|
124 |
# Summarization
|
125 |
+
if st.checkbox("Mark here, Text Summarization for English or Bangla!"):
|
126 |
#st.subheader("Summarize Your Text for English and Bangla Texts!")
|
127 |
#message = st.text_area("Enter the Text","Type please ..")
|
128 |
#st.text("Using Gensim Summarizer ..")
|