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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +48 -25
app.py CHANGED
@@ -20,32 +20,55 @@ project_links = {
20
 
21
  for project_name, link in project_links.items():
22
  st.sidebar.markdown(f"[{project_name}]({link})")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
- # Education
25
- st.header("Education")
26
- st.subheader("Dr. B R Ambedkar National Institute of Technology, Jalandhar, Punjab, India")
27
- st.write("BTech in Computer Science and Engineering")
28
- st.write("CGPA: 7.32")
29
- st.write("Year of Graduation: 2024")
30
-
31
- # Experience
32
- st.header("Experience")
33
- st.subheader("Microlent Systems Pvt Ltd, Rajasthan, India (05/2023-06/2023)")
34
- st.write("PYTHON DEVELOPER (INTERN)")
35
- st.markdown("- Developed an NLP-based pipeline using Python, collaborating with a team to filter text and generate 3D objects.")
36
- st.markdown("- Utilized shape-based testing to improve efficiency and gained valuable experience in natural language processing and 3D object generation.")
37
- st.markdown("- Conducted extensive testing and model selection within the pipeline, resulting in significant time savings.")
38
- st.markdown("- This experience allowed for hands-on learning alongside industry professionals, enhancing Python and machine learning skills.")
39
- 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.")
40
-
41
- # Personal Projects
42
- st.header("Personal Projects")
43
- st.subheader("Cloud Detection System (05/2023-06/2023)")
44
- st.markdown("- Designed and engineered a cutting-edge Cloud Detection System achieving an exceptional 99% accuracy rate.")
45
- st.markdown("- Reduced dataset noise effectively through the implementation of OpenCV image enhancement techniques.")
46
- st.markdown("- Efficiently annotated datasets using Roboflow techniques, streamlining data processing.")
47
- st.markdown("- Led valuable contributions to atmospheric science by analyzing cloud characteristics, enhancing understanding in scattering, absorption, and infrared radiation.")
48
- st.markdown("- Developed a scalable and reliable Cloud Detection System that monitors hundreds of thousands of images per day.")
49
 
50
  st.subheader("Runtime Prediction Model (05/2022-12/2022)")
51
  st.markdown("- Designed and engineered a predictive model for algorithm time complexity analysis, leveraging skills in machine learning.")
 
20
 
21
  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)")
58
+ st.markdown("- Developed an NLP-based pipeline using Python, collaborating with a team to filter text and generate 3D objects.")
59
+ st.markdown("- Utilized shape-based testing to improve efficiency and gained valuable experience in natural language processing and 3D object generation.")
60
+ st.markdown("- Conducted extensive testing and model selection within the pipeline, resulting in significant time savings.")
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.")
68
+ st.markdown("- Reduced dataset noise effectively through the implementation of OpenCV image enhancement techniques.")
69
+ st.markdown("- Efficiently annotated datasets using Roboflow techniques, streamlining data processing.")
70
+ st.markdown("- Led valuable contributions to atmospheric science by analyzing cloud characteristics, enhancing understanding in scattering, absorption, and infrared radiation.")
71
+ st.markdown("- Developed a scalable and reliable Cloud Detection System that monitors hundreds of thousands of images per day.")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
 
73
  st.subheader("Runtime Prediction Model (05/2022-12/2022)")
74
  st.markdown("- Designed and engineered a predictive model for algorithm time complexity analysis, leveraging skills in machine learning.")