gouravgujariya commited on
Commit
cd1a4ee
·
1 Parent(s): 225b1a6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -24
app.py CHANGED
@@ -22,36 +22,15 @@ for project_name, link in project_links.items():
22
  st.sidebar.markdown(f"[{project_name}]({link})")
23
  import streamlit as st
24
 
25
- # Header
26
- st.title("Gourav Gujariya's Portfolio")
27
-
28
- # Contact Information
29
- st.sidebar.header("Contact Information")
30
- st.sidebar.markdown("Email: [email protected]")
31
- st.sidebar.markdown("Phone: 9460468011")
32
- st.sidebar.markdown("[LinkedIn](https://www.linkedin.com/in/gourav-gujariya)")
33
- st.sidebar.markdown("[GitHub](https://github.com/gouravgujariya)")
34
-
35
- # Links to Projects
36
- st.sidebar.header("Projects")
37
- project_links = {
38
- "Text Analysis": "https://huggingface.co/spaces/gouravgujariya/Text_analysis",
39
- "Scan Threat Detection": "https://huggingface.co/spaces/gouravgujariya/Scan_Threat_detection",
40
- "Web to JSON": "https://huggingface.co/spaces/gouravgujariya/Web_to_json"
41
- }
42
-
43
- for project_name, link in project_links.items():
44
- st.sidebar.markdown(f"[{project_name}]({link})")
45
-
46
  # Create expandable sections
47
- with st.beta_container():
48
  st.header("Education")
49
  st.subheader("Dr. B R Ambedkar National Institute of Technology, Jalandhar, Punjab, India")
50
  st.write("BTech in Computer Science and Engineering")
51
  st.write("CGPA: 7.32")
52
  st.write("Year of Graduation: 2024")
53
 
54
- with st.beta_container():
55
  st.header("Experience")
56
  st.subheader("Microlent Systems Pvt Ltd, Rajasthan, India (05/2023-06/2023)")
57
  st.write("PYTHON DEVELOPER (INTERN)")
@@ -61,7 +40,7 @@ with st.beta_container():
61
  st.markdown("- This experience allowed for hands-on learning alongside industry professionals, enhancing Python and machine learning skills.")
62
  st.markdown("- Assembled and programmed a Python-based solution for 3D object generation. Solved complex challenges in text-to-3D conversion, showcasing expertise in NLP and contributing to streamlined processes.")
63
 
64
- with st.beta_container():
65
  st.header("Personal Projects")
66
  st.subheader("Cloud Detection System (05/2023-06/2023)")
67
  st.markdown("- Designed and engineered a cutting-edge Cloud Detection System achieving an exceptional 99% accuracy rate.")
 
22
  st.sidebar.markdown(f"[{project_name}]({link})")
23
  import streamlit as st
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  # Create expandable sections
26
+ with st.expander():
27
  st.header("Education")
28
  st.subheader("Dr. B R Ambedkar National Institute of Technology, Jalandhar, Punjab, India")
29
  st.write("BTech in Computer Science and Engineering")
30
  st.write("CGPA: 7.32")
31
  st.write("Year of Graduation: 2024")
32
 
33
+ with st.expander():
34
  st.header("Experience")
35
  st.subheader("Microlent Systems Pvt Ltd, Rajasthan, India (05/2023-06/2023)")
36
  st.write("PYTHON DEVELOPER (INTERN)")
 
40
  st.markdown("- This experience allowed for hands-on learning alongside industry professionals, enhancing Python and machine learning skills.")
41
  st.markdown("- Assembled and programmed a Python-based solution for 3D object generation. Solved complex challenges in text-to-3D conversion, showcasing expertise in NLP and contributing to streamlined processes.")
42
 
43
+ with st.expander():
44
  st.header("Personal Projects")
45
  st.subheader("Cloud Detection System (05/2023-06/2023)")
46
  st.markdown("- Designed and engineered a cutting-edge Cloud Detection System achieving an exceptional 99% accuracy rate.")