Spaces:
No application file
No application file
Delete app.py
Browse files
app.py
DELETED
@@ -1,165 +0,0 @@
|
|
1 |
-
from pathlib import Path
|
2 |
-
|
3 |
-
import streamlit as st
|
4 |
-
from PIL import Image
|
5 |
-
|
6 |
-
|
7 |
-
# ---- Path Setting -----
|
8 |
-
current_dir = Path(__file__).parent if"__file__" in locals() else Path.cwd()
|
9 |
-
css_file = current_dir / "styles"/"main.css"
|
10 |
-
resume_file = current_dir / "assets" / "aditya_s_resume.pdf"
|
11 |
-
profile_pic = current_dir / "assets" / "profile-pic.png"
|
12 |
-
|
13 |
-
# --- general settings
|
14 |
-
PAGE_TITLE = "Digital CV | Aditya Yadav"
|
15 |
-
PAGE_ICON = ":wave:"
|
16 |
-
NAME = "Aditya Yadav"
|
17 |
-
DESCRIPTION = """
|
18 |
-
Aspiring Machine Learning Engineer with a solid foundation in data science, currently in my 3rd year of BSc in Data Science.
|
19 |
-
Skilled in data visualization, preprocessing, and team-based ML projects.
|
20 |
-
"""
|
21 |
-
EMAIL = "[email protected]"
|
22 |
-
SOCIAL_MEDIA = {
|
23 |
-
"LinkedIn": "https://www.linkedin.com/in/aditya-s-yadav01/",
|
24 |
-
"Github": "https://github.com/adityayadav0111",
|
25 |
-
"Kaggle": "https://www.kaggle.com/adityayadav01",
|
26 |
-
"Twitter(X)": "https://x.com/yadavv_adityaa",
|
27 |
-
"Leetcode": "https://leetcode.com/u/adityayadav011103/"
|
28 |
-
}
|
29 |
-
|
30 |
-
PROJECTS = {
|
31 |
-
"π Movie Recommendation System - Web app using Pyton ": "https://huggingface.co/spaces/aditya-s-yadav/Movie-Recommender",
|
32 |
-
"π SMS Spam Classifier - NlP Based System to Detect Spam or Ham": "https://github.com/adityayadav0111/sms-email-spam-classifier",
|
33 |
-
"π Spotify Dashboard - Used Power Bi to create interactive dashboard": "https://github.com/adityayadav0111/Dashboards/blob/main/Spotifyy_Dashboard_000.pbix",
|
34 |
-
"π Image To Text Conversion App - Used Flask to create Web App for Text Conversion from Image": "https://github.com/adityayadav0111/Image-to-text-speech-conversion-app",
|
35 |
-
}
|
36 |
-
|
37 |
-
CERTIFICATIONS = {
|
38 |
-
"π IBM Data Analyst Specialization - Coursera": "https://drive.google.com/file/d/19p7v4aGPzlik-y0nAuc8VbzdTw9wTo3o/view?usp=sharing",
|
39 |
-
"π Python for Data Science - NPTEL": "https://drive.google.com/file/d/1yyC7cu4a63Wambw71a_XtSeUgULcXCM3/view?usp=sharing",
|
40 |
-
"π Data Analytics and Visualization Job Simulation - Forage": "https://drive.google.com/file/d/1XWh_fz1XaUqhY_KKuo3yvyeb9NKyf3qB/view?usp=sharing"
|
41 |
-
}
|
42 |
-
|
43 |
-
|
44 |
-
st.set_page_config(page_title=PAGE_TITLE, page_icon=PAGE_ICON)
|
45 |
-
|
46 |
-
## -- LOAD CSS, PDF AND PROFILE PIC ----
|
47 |
-
with open(css_file) as f:
|
48 |
-
st.markdown("<style>{}</style>".format(f.read()),unsafe_allow_html=True)
|
49 |
-
with open(resume_file,"rb") as pdf_file:
|
50 |
-
PDFbyte =pdf_file.read()
|
51 |
-
profile_pic = Image.open(profile_pic)
|
52 |
-
|
53 |
-
# --- Hero Section ---
|
54 |
-
col1, col2 = st.columns(2,gap="small")
|
55 |
-
with col1:
|
56 |
-
st.image(profile_pic, width=230)
|
57 |
-
|
58 |
-
with col2:
|
59 |
-
st.title(NAME)
|
60 |
-
st.write(DESCRIPTION)
|
61 |
-
st.download_button(
|
62 |
-
label= " π Download Resume",
|
63 |
-
data=PDFbyte,
|
64 |
-
file_name = resume_file.name,
|
65 |
-
mime="application/octet-stream",
|
66 |
-
|
67 |
-
|
68 |
-
)
|
69 |
-
st.write("π«",EMAIL)
|
70 |
-
|
71 |
-
# --- SOCIAL LINKS ---
|
72 |
-
st.write('\n')
|
73 |
-
cols = st.columns(len(SOCIAL_MEDIA))
|
74 |
-
for index, (platform, link) in enumerate(SOCIAL_MEDIA.items()):
|
75 |
-
cols[index].write(f"[{platform}]({link})")
|
76 |
-
|
77 |
-
## --- Experience and Qualifiaction
|
78 |
-
st.write('\n')
|
79 |
-
st.subheader("Experience & Qualifications")
|
80 |
-
st.write(
|
81 |
-
"""
|
82 |
-
- βοΈ 0.5 years of experience in data analysis, focusing on generating actionable insights from various datasets
|
83 |
-
- βοΈ Proficient in Python and Excel, applied in projects such as spam detection and image-to-text conversion
|
84 |
-
- βοΈ Strong understanding of statistical principles and their applications in real-world scenarios
|
85 |
-
- βοΈ Excellent team player with a proactive approach, demonstrated during internships and collaborative projects
|
86 |
-
- βοΈ Currently pursuing a BSc in Data Science, with coursework in machine learning and financial modeling
|
87 |
-
- βοΈ Hands-on experience in developing and deploying applications using Flask and data visualization tools
|
88 |
-
"""
|
89 |
-
)
|
90 |
-
|
91 |
-
# --- SKILLS ---
|
92 |
-
st.write('\n')
|
93 |
-
st.subheader("Hard Skills")
|
94 |
-
st.write(
|
95 |
-
"""
|
96 |
-
- π©βπ» Programming: Python (Scikit-learn, Pandas), SQL, C, Java, NoSQL
|
97 |
-
- π Data Visulization: PowerBi, MS Excel, Plotly, Tableau
|
98 |
-
- π Core Skills: Supervised Learning, Unsupervied Learning, Data Scraping,NLP
|
99 |
-
- ποΈ Databases: Postgres, MongoDB, MySQL
|
100 |
-
"""
|
101 |
-
)
|
102 |
-
|
103 |
-
|
104 |
-
# --- WORK HISTORY ---
|
105 |
-
st.write('\n')
|
106 |
-
st.subheader("Work History")
|
107 |
-
st.write("---")
|
108 |
-
|
109 |
-
# --- JOB 1
|
110 |
-
st.write("π§", "**Data Analyst Intern | Ozibook**")
|
111 |
-
st.write("07/2024 - 09/2024")
|
112 |
-
st.write(
|
113 |
-
"""
|
114 |
-
- βΊ Led a team of 4 in lead generation, identifying and implementing strategies to drive more qualified client leads.
|
115 |
-
- βΊ Collection and screening of data on over 500 potential clients across sectors such as travel, fitness, and corporate
|
116 |
-
companies, with a focus on markets in Dubai and major Indian cities.
|
117 |
-
- βΊ Conducted interviews to assess and onboard team members, enhancing team efficiency by selecting candidates aligned
|
118 |
-
with project requirements.
|
119 |
-
|
120 |
-
"""
|
121 |
-
)
|
122 |
-
|
123 |
-
# --- JOB 2
|
124 |
-
st.write('\n')
|
125 |
-
st.write("π§", "**Data Science Intern | CodSoft**")
|
126 |
-
st.write("05/2018 - 06/2022")
|
127 |
-
st.write(
|
128 |
-
"""
|
129 |
-
- βΊ Developed and implemented machine learning models for fraud detection, sales price prediction, and movie rating
|
130 |
-
prediction
|
131 |
-
- βΊ β’ Utilized Python and relevant libraries for data preprocessing, model training, and evaluation.
|
132 |
-
"""
|
133 |
-
)
|
134 |
-
|
135 |
-
# --- JOB 3
|
136 |
-
st.write('\n')
|
137 |
-
st.write("π§", "**Customer Service Associate | PVR Cinemas**")
|
138 |
-
st.write("12/2023 - 02/2024")
|
139 |
-
st.write(
|
140 |
-
"""
|
141 |
-
- βΊ Processed financial transactions with precision, ensuring compliance with company policies and maintaining accurate
|
142 |
-
records for customer accounts.
|
143 |
-
- βΊ Addressed customer inquiries and resolved issues related to ticketing and bookings, ensuring a smooth and enjoyable
|
144 |
-
cinema experience for all patrons.
|
145 |
-
"""
|
146 |
-
)
|
147 |
-
|
148 |
-
|
149 |
-
# --- Certifications ---
|
150 |
-
st.write('\n')
|
151 |
-
st.subheader("πCertifications")
|
152 |
-
st.write("---")
|
153 |
-
for certification, link in CERTIFICATIONS.items():
|
154 |
-
st.write(f"[{certification}]({link})")
|
155 |
-
|
156 |
-
|
157 |
-
# --- Projects & Accomplishments ---
|
158 |
-
st.write('\n')
|
159 |
-
st.subheader("Projects & Accomplishments")
|
160 |
-
st.write("---")
|
161 |
-
for project, link in PROJECTS.items():
|
162 |
-
st.write(f"[{project}]({link})")
|
163 |
-
|
164 |
-
|
165 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|