gouravgujariya commited on
Commit
14a2607
Β·
1 Parent(s): 9f0c011

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -13
app.py CHANGED
@@ -2,7 +2,10 @@ import streamlit as st
2
 
3
  # Header
4
  st.title("Gourav Gujariya's Portfolio")
5
-
 
 
 
6
  # Contact Information
7
  st.sidebar.header("Contact Information")
8
  st.sidebar.markdown("Email: [email protected]")
@@ -59,19 +62,29 @@ st.header("Achievements")
59
  st.markdown("Kaggle: Dataset EXPERT and Notebook EXPERT")
60
  st.markdown("COMMUNITY: Google Dev Student Club active member")
61
 
62
- if st.button(" Python"):
63
- st.balloons()
64
- st.write("Python is a versatile, high-level programming language commonly used for various applications, including web development, data analysis, and machine learning.")
65
- # Technical Skills
66
  st.header("Technical Skills")
67
- st.subheader("Languages")
68
- st.write("Python, C++")
69
- st.subheader("Tools")
70
- st.write("Machine learning, Deep learning, Natural language processing, Computer vision, Tensorflow")
71
- st.subheader("Technologies/Frameworks")
72
- st.write("Streamlit, Keras, OpenCV, NLTK, YOLO")
73
- st.subheader("Basic")
74
- st.write("Object-oriented programming, RDBMS (SQL), Operating Systems")
75
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  # Add a footer or any other additional content if needed
77
 
 
 
 
 
2
 
3
  # Header
4
  st.title("Gourav Gujariya's Portfolio")
5
+ st.text(" πŸ‘‹ 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.text("πŸ€– 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.text("🌐 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.text("πŸ’₯ 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]")
 
62
  st.markdown("Kaggle: Dataset EXPERT and Notebook EXPERT")
63
  st.markdown("COMMUNITY: Google Dev Student Club active member")
64
 
65
+ # Create a column layout for Technical Skills
 
 
 
66
  st.header("Technical Skills")
 
 
 
 
 
 
 
 
67
 
68
+ # Define the layout with two columns
69
+ col1, col2 = st.columns(2)
70
+
71
+ # Column 1
72
+ with col1:
73
+ st.subheader("Languages")
74
+ st.write("Python, C++")
75
+
76
+ st.subheader("Tools")
77
+ st.write("Machine learning, Deep learning, Natural language processing, Computer vision, Tensorflow")
78
+
79
+ # Column 2
80
+ with col2:
81
+ st.subheader("Technologies/Frameworks")
82
+ st.write("Streamlit, Keras, OpenCV, NLTK, YOLO")
83
+
84
+ st.subheader("Basic")
85
+ st.write("Object-oriented programming, RDBMS (SQL), Operating Systems")
86
  # Add a footer or any other additional content if needed
87
 
88
+
89
+ if st.button(" feeling lucky"):
90
+ st.balloons()