Update app.py
Browse files
app.py
CHANGED
@@ -94,9 +94,9 @@ def main():
|
|
94 |
+ Named Entity Recognition(NER)/Trigger word detection using SpaCy
|
95 |
+ Sentiment Analysis using TextBlob
|
96 |
+ Document/Text Summarization using Gensim/T5 both for Bangla Extractive and English Abstractive.
|
97 |
-
""")
|
98 |
-
|
99 |
-
|
100 |
st.subheader("Please, feed your image/text, features/services will appear automatically!")
|
101 |
message = st.text_input("Type your text here!")
|
102 |
camera_photo = st.camera_input("Take a photo, Containing English or Bangla texts", on_change=change_photo_state)
|
|
|
94 |
+ Named Entity Recognition(NER)/Trigger word detection using SpaCy
|
95 |
+ Sentiment Analysis using TextBlob
|
96 |
+ Document/Text Summarization using Gensim/T5 both for Bangla Extractive and English Abstractive.
|
97 |
+
""")
|
98 |
+
def change_photo_state():
|
99 |
+
st.session_state["photo"]="done"
|
100 |
st.subheader("Please, feed your image/text, features/services will appear automatically!")
|
101 |
message = st.text_input("Type your text here!")
|
102 |
camera_photo = st.camera_input("Take a photo, Containing English or Bangla texts", on_change=change_photo_state)
|