gouravgujariya commited on
Commit
8d01c66
·
1 Parent(s): ac95d85

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +62 -0
app.py ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 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]")
9
+ st.sidebar.markdown("Phone: 9460468011")
10
+ st.sidebar.markdown("[LinkedIn](https://www.linkedin.com/in/gourav-gujariya)")
11
+ st.sidebar.markdown("[GitHub](https://github.com/gouravgujariya)")
12
+
13
+ # Education
14
+ st.header("Education")
15
+ st.subheader("Dr. B R Ambedkar National Institute of Technology, Jalandhar, Punjab, India")
16
+ st.write("BTech in Computer Science and Engineering")
17
+ st.write("CGPA: 7.32")
18
+ st.write("Year of Graduation: 2024")
19
+
20
+ # Experience
21
+ st.header("Experience")
22
+ st.subheader("Microlent Systems Pvt Ltd, Rajasthan, India (05/2023-06/2023)")
23
+ st.write("PYTHON DEVELOPER (INTERN)")
24
+ st.markdown("- Developed an NLP-based pipeline using Python, collaborating with a team to filter text and generate 3D objects.")
25
+ st.markdown("- Utilized shape-based testing to improve efficiency and gained valuable experience in natural language processing and 3D object generation.")
26
+ st.markdown("- Conducted extensive testing and model selection within the pipeline, resulting in significant time savings.")
27
+ st.markdown("- This experience allowed for hands-on learning alongside industry professionals, enhancing Python and machine learning skills.")
28
+ 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.")
29
+
30
+ # Personal Projects
31
+ st.header("Personal Projects")
32
+ st.subheader("Cloud Detection System (05/2023-06/2023)")
33
+ st.markdown("- Designed and engineered a cutting-edge Cloud Detection System achieving an exceptional 99% accuracy rate.")
34
+ st.markdown("- Reduced dataset noise effectively through the implementation of OpenCV image enhancement techniques.")
35
+ st.markdown("- Efficiently annotated datasets using Roboflow techniques, streamlining data processing.")
36
+ st.markdown("- Led valuable contributions to atmospheric science by analyzing cloud characteristics, enhancing understanding in scattering, absorption, and infrared radiation.")
37
+ st.markdown("- Developed a scalable and reliable Cloud Detection System that monitors hundreds of thousands of images per day.")
38
+
39
+ st.subheader("Runtime Prediction Model (05/2022-12/2022)")
40
+ st.markdown("- Designed and engineered a predictive model for algorithm time complexity analysis, leveraging skills in machine learning.")
41
+ st.markdown("- Developed, trained, and fine-tuned 9 machine learning models, achieving a remarkable accuracy score of 74.64%.")
42
+ st.markdown("- Evaluated 7 ensemble algorithms and 3 baseline models, resulting in a 15% accuracy improvement.")
43
+ st.markdown("- Implemented solutions for efficient algorithm optimization, providing valuable insights to enhance processes.")
44
+
45
+ # Achievements
46
+ st.header("Achievements")
47
+ st.markdown("Kaggle: Dataset EXPERT and Notebook EXPERT")
48
+ st.markdown("COMMUNITY: Google Dev Student Club active member")
49
+
50
+ # Technical Skills
51
+ st.header("Technical Skills")
52
+ st.subheader("Languages")
53
+ st.write("Python, C++")
54
+ st.subheader("Tools")
55
+ st.write("Machine learning, Deep learning, Natural language processing, Computer vision, Tensorflow")
56
+ st.subheader("Technologies/Frameworks")
57
+ st.write("Streamlit, Keras, OpenCV, NLTK, YOLO")
58
+ st.subheader("Basic")
59
+ st.write("Object-oriented programming, RDBMS (SQL), Operating Systems")
60
+
61
+ # Add a footer or any other additional content if needed
62
+