Spaces:
Sleeping
Sleeping
KrSharangrav
commited on
Commit
·
7dccde6
1
Parent(s):
f2ddc64
added the names
Browse files
app.py
CHANGED
@@ -4,9 +4,18 @@ from db import insert_data_if_empty, get_mongo_client
|
|
4 |
from chatbot import chatbot_response
|
5 |
|
6 |
# Sidebar: Display image and title.
|
7 |
-
st.sidebar.image("https://huggingface.co/spaces/sharangrav24/SentimentAnalysis/resolve/main/sentiment.png", width=
|
8 |
st.sidebar.markdown("## Group A Submission - Python")
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
# Ensure historical data is inserted into MongoDB if not already present.
|
11 |
insert_data_if_empty()
|
12 |
|
@@ -30,8 +39,8 @@ if st.button("Get Response"):
|
|
30 |
st.write("### Response:")
|
31 |
st.markdown(ai_response)
|
32 |
st.write("### Sentiment Analysis:")
|
33 |
-
st.write(f"**Sentiment Detected:** {sentiment_label} ({sentiment_confidence*100:.
|
34 |
st.write("### Category Extraction:")
|
35 |
-
st.write(f"**Category Detected:** {topic_label} ({topic_confidence*100:.
|
36 |
else:
|
37 |
st.warning("⚠️ Please enter a question or text for analysis.")
|
|
|
4 |
from chatbot import chatbot_response
|
5 |
|
6 |
# Sidebar: Display image and title.
|
7 |
+
st.sidebar.image("https://huggingface.co/spaces/sharangrav24/SentimentAnalysis/resolve/main/sentiment.png", width=120)
|
8 |
st.sidebar.markdown("## Group A Submission - Python")
|
9 |
|
10 |
+
# Sidebar: Add submitted by details.
|
11 |
+
st.sidebar.markdown("""
|
12 |
+
**Submitted by-**
|
13 |
+
Kumar Sharangrav [C] (GMP-21-10)
|
14 |
+
Amit Sanjeev (GMP-21-01)
|
15 |
+
Anoop G Zacharia (GMP-21-03)
|
16 |
+
Anviti Pant (GMP-21-05)
|
17 |
+
""")
|
18 |
+
|
19 |
# Ensure historical data is inserted into MongoDB if not already present.
|
20 |
insert_data_if_empty()
|
21 |
|
|
|
39 |
st.write("### Response:")
|
40 |
st.markdown(ai_response)
|
41 |
st.write("### Sentiment Analysis:")
|
42 |
+
st.write(f"**Sentiment Detected:** {sentiment_label} ({sentiment_confidence*100:.f}% confidence)")
|
43 |
st.write("### Category Extraction:")
|
44 |
+
st.write(f"**Category Detected:** {topic_label} ({topic_confidence*100:.f}% confidence)")
|
45 |
else:
|
46 |
st.warning("⚠️ Please enter a question or text for analysis.")
|