Spaces:
Sleeping
Sleeping
Commit
·
8beaed1
1
Parent(s):
cd1a4ee
Update app.py
Browse files
app.py
CHANGED
@@ -22,16 +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 |
-
# Create expandable
|
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 |
-
|
34 |
-
|
35 |
st.subheader("Microlent Systems Pvt Ltd, Rajasthan, India (05/2023-06/2023)")
|
36 |
st.write("PYTHON DEVELOPER (INTERN)")
|
37 |
st.markdown("- Developed an NLP-based pipeline using Python, collaborating with a team to filter text and generate 3D objects.")
|
@@ -40,8 +39,8 @@ with st.expander():
|
|
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 |
-
|
44 |
-
|
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.")
|
47 |
st.markdown("- Reduced dataset noise effectively through the implementation of OpenCV image enhancement techniques.")
|
|
|
22 |
st.sidebar.markdown(f"[{project_name}]({link})")
|
23 |
import streamlit as st
|
24 |
|
25 |
+
# Create an expandable section for Education
|
26 |
+
with st.expander("Education"):
|
|
|
27 |
st.subheader("Dr. B R Ambedkar National Institute of Technology, Jalandhar, Punjab, India")
|
28 |
st.write("BTech in Computer Science and Engineering")
|
29 |
st.write("CGPA: 7.32")
|
30 |
st.write("Year of Graduation: 2024")
|
31 |
|
32 |
+
# Create an expandable section for Experience
|
33 |
+
with st.expander("Experience"):
|
34 |
st.subheader("Microlent Systems Pvt Ltd, Rajasthan, India (05/2023-06/2023)")
|
35 |
st.write("PYTHON DEVELOPER (INTERN)")
|
36 |
st.markdown("- Developed an NLP-based pipeline using Python, collaborating with a team to filter text and generate 3D objects.")
|
|
|
39 |
st.markdown("- This experience allowed for hands-on learning alongside industry professionals, enhancing Python and machine learning skills.")
|
40 |
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.")
|
41 |
|
42 |
+
# Create an expandable section for Personal Projects
|
43 |
+
with st.expander("Personal Projects"):
|
44 |
st.subheader("Cloud Detection System (05/2023-06/2023)")
|
45 |
st.markdown("- Designed and engineered a cutting-edge Cloud Detection System achieving an exceptional 99% accuracy rate.")
|
46 |
st.markdown("- Reduced dataset noise effectively through the implementation of OpenCV image enhancement techniques.")
|