Spaces:
Sleeping
Sleeping
Madhumitha19
commited on
Commit
β’
cc6ab9b
1
Parent(s):
6a8c654
Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ with open('tokenizer.pkl', 'rb') as tokenizer_file:
|
|
16 |
class_mapping = {"Angry": 0, "Sad": 1, "Joy": 2, "Surprise": 3}
|
17 |
numerical_to_label = {v: k for k, v in class_mapping.items()}
|
18 |
|
19 |
-
st.title('VibeConnect')
|
20 |
st.markdown(
|
21 |
"""
|
22 |
<style>
|
@@ -66,8 +66,16 @@ background_style = f"""
|
|
66 |
st.markdown(background_style, unsafe_allow_html=True)
|
67 |
|
68 |
logo_path = "2448079_330685-P9SESK-66.jpg"
|
69 |
-
logo = st.image(logo_path, caption="YouTube
|
70 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
|
73 |
# Text input for the user to enter a sequence
|
|
|
16 |
class_mapping = {"Angry": 0, "Sad": 1, "Joy": 2, "Surprise": 3}
|
17 |
numerical_to_label = {v: k for k, v in class_mapping.items()}
|
18 |
|
19 |
+
st.title('VibeConnect πππ€ͺ')
|
20 |
st.markdown(
|
21 |
"""
|
22 |
<style>
|
|
|
66 |
st.markdown(background_style, unsafe_allow_html=True)
|
67 |
|
68 |
logo_path = "2448079_330685-P9SESK-66.jpg"
|
69 |
+
logo = st.image(logo_path, caption="YouTube")
|
70 |
+
st.markdown(
|
71 |
+
f"""
|
72 |
+
<div style='text-align:center;'>
|
73 |
+
<img src='{logo_path}' alt="Logo" width="20"/>
|
74 |
+
</div>
|
75 |
+
""",
|
76 |
+
unsafe_allow_html=True
|
77 |
+
)
|
78 |
+
|
79 |
|
80 |
|
81 |
# Text input for the user to enter a sequence
|