kmanoj commited on
Commit
ced0847
1 Parent(s): dae6881

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -5
app.py CHANGED
@@ -39,10 +39,14 @@ st.header("About the Model")
39
  st.write("The sentiment analysis is performed using the Hugging Face Transformers library.")
40
  st.write("The model used is 'nlptown/bert-base-multilingual-uncased-sentiment'.")
41
 
 
 
 
 
42
  # Footer with a link to LinkedIn profile
43
  st.header("Connect with Me on LinkedIn")
44
- st.write("Feel free to connect with me on LinkedIn for any inquiries or collaborations.")
45
- st.markdown("[LinkedIn Profile](https://www.linkedin.com/in/iam-manoj/)")
46
-
47
- # Footer with additional information or links
48
- st.footer("For more information, visit the [Hugging Face Transformers website](https://huggingface.co/transformers/).")
 
39
  st.write("The sentiment analysis is performed using the Hugging Face Transformers library.")
40
  st.write("The model used is 'nlptown/bert-base-multilingual-uncased-sentiment'.")
41
 
42
+ # Footer with additional information or links
43
+ st.markdown("For more information, visit the [Hugging Face Transformers website](https://huggingface.co/transformers/).")
44
+
45
+
46
  # Footer with a link to LinkedIn profile
47
  st.header("Connect with Me on LinkedIn")
48
+ st.write("Feel free to reach out for any inquiries, collaborations, or just to connect.")
49
+ st.write("Visit my LinkedIn profile:")
50
+ linkedin_link = "https://www.linkedin.com/in/iam-manoj/"
51
+ linkedin_logo = "https://content.linkedin.com/content/dam/me/business/en-us/amp/brand-site/v2/bg/LI-Logo.svg.original.svg"
52
+ st.markdown(f'<a href="{linkedin_link}"><img src="{linkedin_logo}" alt="LinkedIn Logo" width="100"></a>', unsafe_allow_html=True)