gouravgujariya commited on
Commit
c015ea2
Β·
1 Parent(s): bd3e33d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -4
app.py CHANGED
@@ -1,11 +1,33 @@
1
  import streamlit as st
 
2
 
3
  # Header
4
  st.title("Gourav Gujariya's Portfolio")
5
- st.markdown(" πŸ‘‹ Hello, I'm GOURAV GUJARIYA, and I'm more than just a name. I'm a passionate data science enthusiast with a burning desire to create real-life impact through innovation. πŸš€")
6
- st.markdown("πŸ€– With a solid foundation in machine learning (ML) and deep learning (DL), I thrive on challenges that push the boundaries of what's possible. My accolades include being recognized as a Kaggle Dataset EXPERT and Notebook EXPERT, a testament to my data analysis prowess. πŸ“ŠπŸ’‘")
7
- st.markdown("🌐 I'm not just limited to personal accomplishments; I've actively contributed to the world of open-source models and research papers, always striving to stay at the forefront of technological advancements. πŸ“πŸ”¬")
8
- st.markdown("πŸ’₯ If you're looking for a dedicated and forward-thinking team player who can turn data into insights and drive real change, I'm your candidate. Let's innovate together and make a difference! πŸ’ͺπŸŒŸπŸ“ˆ")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  # Contact Information
10
  st.sidebar.header("Contact Information")
11
  st.sidebar.markdown("Email: [email protected]")
 
1
  import streamlit as st
2
+ from annotated_text import annotated_text
3
 
4
  # Header
5
  st.title("Gourav Gujariya's Portfolio")
6
+ # st.markdown(" πŸ‘‹ Hello, I'm GOURAV GUJARIYA, and I'm more than just a name. I'm a passionate data science enthusiast with a burning desire to create real-life impact through innovation. πŸš€")
7
+ # st.markdown("πŸ€– With a solid foundation in machine learning (ML) and deep learning (DL), I thrive on challenges that push the boundaries of what's possible. My accolades include being recognized as a Kaggle Dataset EXPERT and Notebook EXPERT, a testament to my data analysis prowess. πŸ“ŠπŸ’‘")
8
+ # st.markdown("🌐 I'm not just limited to personal accomplishments; I've actively contributed to the world of open-source models and research papers, always striving to stay at the forefront of technological advancements. πŸ“πŸ”¬")
9
+ # st.markdown("πŸ’₯ If you're looking for a dedicated and forward-thinking team player who can turn data into insights and drive real change, I'm your candidate. Let's innovate together and make a difference! πŸ’ͺπŸŒŸπŸ“ˆ")
10
+
11
+ annotated_text(
12
+ " πŸ‘‹ Hello, I'm ",
13
+ ("GOURAV GUJARIYA", "Nice person"),
14
+ ", and I'm more than just a name. I'm a passionate ",
15
+ ("data science enthusiast", "πŸ€“"),
16
+ " with a burning desire to create real-life impact through innovation. πŸš€",
17
+ " With a "
18
+ ("solid foundation ", "rock"),
19
+ "in machine learning (ML) and deep learning (DL),",
20
+ " I thrive on challenges that push the ",
21
+ ("boundaries ", "🚳"),
22
+ "of what's possible. My accolades include being recognized as a Kaggle ",("Dataset EXPERT"," Badge πŸ“Œ")," and",(" Notebook EXPERT"," Badge πŸ‘©β€πŸ’»"),
23
+ "a testament to my data analysis prowess. πŸ“Š",
24
+ "🌐 I'm not just limited to personal accomplishments; I've actively contributed to the ",
25
+ ("world","🌎")," of open-source models and ",("research papers","in progress πŸ–‹"),
26
+ ", always striving to stay at the forefront of technological advancements. πŸ“πŸ”¬",
27
+ "πŸ’₯ If you're looking for a ",("dedicated","Adj")," and forward-thinking team player who can turn data into insights and drive real change",
28
+ ", I'm your candidate. Let's innovate together and make a difference! πŸ’ͺπŸŒŸπŸ“ˆ""
29
+ )
30
+
31
  # Contact Information
32
  st.sidebar.header("Contact Information")
33
  st.sidebar.markdown("Email: [email protected]")