Spaces:
Runtime error
Runtime error
marcelomoreno26
commited on
Commit
•
46d202f
1
Parent(s):
adf1746
Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,14 @@ def main():
|
|
16 |
tokenizer_summary, model_summary = load_summarizer()
|
17 |
pipe_ner = load_NER()
|
18 |
|
19 |
-
st.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
st.markdown("This app summarizes Whatsapp chats and provides named entity recognition as well as sentiment analysis for the conversation")
|
21 |
st.markdown("**NOTE**: *This app can only receive chats downloaded from IOS as the downloaded chat format is different than from Android.*")
|
22 |
st.markdown("Download your whatsapp chat by going to Settings > Chats > Export Chat and there select the chat you want to summarize (download 'Without Media').")
|
|
|
16 |
tokenizer_summary, model_summary = load_summarizer()
|
17 |
pipe_ner = load_NER()
|
18 |
|
19 |
+
st.markdown(f"""
|
20 |
+
<style>
|
21 |
+
body {{
|
22 |
+
background-color: #{e6fedb};
|
23 |
+
}}
|
24 |
+
</style>
|
25 |
+
<h1><img src="logo.png" width="30" height="30"> WhatsApp Analysis Tool</h1>
|
26 |
+
""", unsafe_allow_html=True)
|
27 |
st.markdown("This app summarizes Whatsapp chats and provides named entity recognition as well as sentiment analysis for the conversation")
|
28 |
st.markdown("**NOTE**: *This app can only receive chats downloaded from IOS as the downloaded chat format is different than from Android.*")
|
29 |
st.markdown("Download your whatsapp chat by going to Settings > Chats > Export Chat and there select the chat you want to summarize (download 'Without Media').")
|