Spaces:
Sleeping
Sleeping
Commit
Β·
c015ea2
1
Parent(s):
bd3e33d
Update app.py
Browse files
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]")
|