uservipin commited on
Commit
5451a75
β€’
1 Parent(s): 5254435

Added resume section

Browse files
Files changed (2) hide show
  1. app.py +27 -7
  2. resume.py +160 -0
app.py CHANGED
@@ -1,9 +1,10 @@
 
 
 
1
 
2
  import pandas as pd
3
  import warnings
4
  import streamlit as st
5
- from classification import ClassificationModels
6
- from regression import RegressionModels
7
  warnings.filterwarnings("ignore")
8
  import uuid
9
  import time
@@ -192,12 +193,29 @@ def LLMs():
192
  st.write("This is the About Page")
193
 
194
  def AI():
195
- st.title("About Page")
196
- st.write("This is the About AI")
197
 
198
  def resume():
199
- st.title("Contact Page")
200
- st.write("You can reach us at example@example.com")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
201
 
202
 
203
  # Main function to run the app
@@ -205,7 +223,7 @@ def main():
205
 
206
  st.sidebar.title("Deep Learning/ Data Science/ AI Models")
207
  # page_options = ["Classification", "Regressor", "NLP", "Image", "Voice", "Video", "LLMs"]
208
- page_options = ["NLP","AI","Classification", "Regressor","Deep Learning"]
209
  choice = st.sidebar.radio("Select", page_options)
210
 
211
  if choice == "Classification":
@@ -524,6 +542,8 @@ def main():
524
 
525
  if choice == "LLMs":
526
  LLMs()
 
 
527
 
528
  if __name__ == "__main__":
529
  main()
 
1
+ from classification import ClassificationModels
2
+ from regression import RegressionModels
3
+ from resume import Resume
4
 
5
  import pandas as pd
6
  import warnings
7
  import streamlit as st
 
 
8
  warnings.filterwarnings("ignore")
9
  import uuid
10
  import time
 
193
  st.write("This is the About Page")
194
 
195
  def AI():
196
+ st.title("Need to add models")
197
+ #st.write("This is the About AI")
198
 
199
  def resume():
200
+ st.title("Resume")
201
+ st.write("")
202
+ About, Work_Experience,Skills_Tools, Education_Certification = st.tabs(["About", "Work Experience","Skills & Tools", "Education & Certificates"])
203
+
204
+ with About:
205
+ Resume().display_information()
206
+
207
+ with Work_Experience:
208
+ Resume().display_work_experience()
209
+
210
+ with Skills_Tools:
211
+ Resume().skills_tools()
212
+
213
+ with Education_Certification:
214
+ Resume().display_education_certificate()
215
+
216
+
217
+
218
+
219
 
220
 
221
  # Main function to run the app
 
223
 
224
  st.sidebar.title("Deep Learning/ Data Science/ AI Models")
225
  # page_options = ["Classification", "Regressor", "NLP", "Image", "Voice", "Video", "LLMs"]
226
+ page_options = ["NLP","AI","Classification", "Regressor","Deep Learning", "Resume"]
227
  choice = st.sidebar.radio("Select", page_options)
228
 
229
  if choice == "Classification":
 
542
 
543
  if choice == "LLMs":
544
  LLMs()
545
+ if choice == 'Resume':
546
+ resume()
547
 
548
  if __name__ == "__main__":
549
  main()
resume.py ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ class Resume:
4
+
5
+ def skills_tools(self):
6
+ st.header("Tools and Skills :")
7
+
8
+ with st.expander("**Machine Learning**"):
9
+ ML = ["SK-Learn",
10
+ "Random Forest",
11
+ "Decision Tree",
12
+ "Ensemble Learning Bagging",
13
+ "Boosting",
14
+ "AUC/ROC",
15
+ "EDA",
16
+ "Clustering",
17
+ "NLP",
18
+ "Pipelines",
19
+ "PCA" ]
20
+
21
+ # Create bullet point list using HTML unordered list (<ul>) and list items (<li>)
22
+ bullet_points = f"<ul style='list-style-type: disc; padding-left: 15px;'>" \
23
+ + "".join([f"<li>{item}</li>" for item in ML]) + "</ul>"
24
+ st.write(bullet_points, unsafe_allow_html=True)
25
+
26
+ with st.expander("**Deep Learning**"):
27
+ DL = ["BERT",
28
+ "TensorFlow",
29
+ "Transformers",
30
+ "Encoders Decoders"]
31
+ # Create bullet point list using HTML unordered list (<ul>) and list items (<li>)
32
+ bullet_points = f"<ul style='list-style-type: disc; padding-left: 15px;'>" \
33
+ + "".join([f"<li>{item}</li>" for item in DL]) + "</ul>"
34
+ st.write(bullet_points, unsafe_allow_html=True)
35
+
36
+
37
+ with st.expander("**Data Analytics**"):
38
+ DA = ["Python (pandas, scikit-learn, LightGBM, matplotlib, PyTorch)",
39
+ "SQL",
40
+ "Power BI:(Power Query, Power Service, DAX)"
41
+ ]
42
+ # Create bullet point list using HTML unordered list (<ul>) and list items (<li>)
43
+ bullet_points = f"<ul style='list-style-type: disc; padding-left: 15px;'>" \
44
+ + "".join([f"<li>{item}</li>" for item in DA]) + "</ul>"
45
+ st.write(bullet_points, unsafe_allow_html=True)
46
+
47
+ with st.expander("**Cloud**"):
48
+ DA = ["- Data factory"
49
+ " - Basics",
50
+ " - ETL",
51
+ " - Pipeline",
52
+ " - Azure Machine Learning Studio",
53
+ " - Train and test",
54
+ " - Data Preprocessing",
55
+ " - Run Experiments",
56
+ " - Auto ML",
57
+ " - Data Bricks (Basic)"
58
+ ]
59
+ st.markdown("\n".join(DA))
60
+
61
+ def display_information(self):
62
+ st.header("About: ")
63
+ st.write("Data Science professional with over 3+ years of hands-on experience specializing in data analysis, data visualization, and the development and implementation of Data Science/Machine Learning/AI models.Currently, dedicated to the role of a Fraud detection Data Scientist, leveraging advanced statistical and ML, AI techniques.")
64
+
65
+ def display_work_experience(self):
66
+ st.header("Work Experience")
67
+ with st.expander("**Enhancing Customer Experience and Operational Efficiency through NLP Techniques**"):
68
+
69
+ st.write('''
70
+ This data science project aims to revolutionize call center operations by harnessing the power of NLP techniques. Through sentiment analysis, speech recognition, chatbots, and predictive analytics, the project seeks to improve customer experience, optimize resource allocation, and drive continuous improvement in service quality.\n
71
+ **Sentiment Analysis**: Implement sentiment analysis algorithms to understand the emotional tone of customer calls, distinguishing between satisfaction, dissatisfaction, and anger. Additionally, identify the root causes behind these emotions.\n
72
+ **Speech Recognition**: Develop a speech recognition system using AI that accurately transcribes spoken words into text, enabling further analysis such as sentiment analysis.\n
73
+ **NLP-Powered Chatbots**: Integrate NLP capabilities into chatbots or virtual assistants to efficiently handle routine customer inquiries, providing prompt and personalized responses.\n
74
+ **Insights**: Utilize NLP techniques to summarize call recordings, extract key insights, add relevant tags, and identify recurring customer complaints or trending inquiries.\n
75
+ **Project Impact**:
76
+ Enhanced Operational Efficiency: Automated processes such as call summarization, sentiment analysis, and predictive analytics reduce manual effort and streamline operations.
77
+
78
+ ''')
79
+
80
+ with st.expander("**Credit Card Fraud Detection Risk Modelling**"):
81
+
82
+ cr_pro_pointers = [
83
+ "Designed and implemented predictive models tailored for finance credit card fraud detection, leveraging expertise in data science",
84
+ "Specialized in developing churn, retention, and segmentation models to provide insights into customer behavior, enhancing customer engagement in the finance sector.",
85
+ "Model accuracy is 80% based on validation of alerts predicted by model",
86
+ "Utilized advanced statistical and machine learning techniques such asBoosting algorithms (XGboost, Ligt GBM, CAT Boosting) and complex datasets",
87
+ "Identified trends and patterns in customer behavior to effectively detect fraudulent activities and mitigate risks in credit card transactions",
88
+ "Contributed to market-based analysis by forecasting demand and implementing data-driven strategies to optimize business operations and minimize financial losses."
89
+ ]
90
+
91
+ bullet_points = f"<ul style='list-style-type: disc; padding-left: 15px;'>" \
92
+ + "".join([f"<li>{item}</li>" for item in cr_pro_pointers]) + "</ul>"
93
+ st.write(bullet_points, unsafe_allow_html=True)
94
+
95
+
96
+ with st.expander("**Demand Forecast Model**"):
97
+
98
+ cr_pro_pointers = [
99
+ "Developed and implemented predictive models for demand forecast market-based analysis, aiming to solve business challenges through data-driven insights.",
100
+ "Specialized in designing churn, retention, and segmentation models to provide companies with a deep understanding of customer behavior, thereby enhancing customer engagement and satisfaction",
101
+ "Leveraged various statistical and machine learning techniques such as Support Vector Machines (SVM), Voting, and ensemble algorithms to analyze extensive and intricate datasets.",
102
+ "Obtained data from diverse sources including Azure, ensuring data cleanliness and integrity through rigorous preprocessing and cleaning procedures.",
103
+ "Applied advanced ML models to identify trends and patterns in customer behavior, enabling proactive decision-making and strategic planning.",
104
+ "Contributed to market-based analysis by accurately forecasting demand and recommending actionable strategies to optimize business operations and drive revenue growth."
105
+ ]
106
+
107
+ bullet_points = f"<ul style='list-style-type: disc; padding-left: 15px;'>" \
108
+ + "".join([f"<li>{item}</li>" for item in cr_pro_pointers]) + "</ul>"
109
+ st.write(bullet_points, unsafe_allow_html=True)
110
+
111
+ with st.expander("**Fraud Detection Analyst**"):
112
+
113
+ cr_pro_pointers = [
114
+ "Proven track record in fraud detection within a call center environment, utilizing advanced analytical techniques and tools.",
115
+ "Implemented robust fraud detection algorithms like Random Forest and SVM and strategies, utilizing machine learning models and predictive analytics to identify suspicious activities and patterns in real time.",
116
+ "Conducted thorough investigations into fraudulent incidents, documenting findings and recommending preventative actions for future mitigation."
117
+ ]
118
+
119
+ bullet_points = f"<ul style='list-style-type: disc; padding-left: 15px;'>" \
120
+ + "".join([f"<li>{item}</li>" for item in cr_pro_pointers]) + "</ul>"
121
+ st.write(bullet_points, unsafe_allow_html=True)
122
+
123
+ with st.expander("**Power BI Dashboard with Analytics for Operational Insights :**"):
124
+
125
+ cr_pro_pointers = [
126
+ "For the operation team, I created Power BI dashboards in the form of MIS operation reports. These reports encompassed metrics such as productivity, product quality, revenue, turnaround time (TAT), and Net Promoter Score (NPS). I employed DAX calculations and measures to derive key performance indicators (KPIs) including revenue, TAT, and NPS to achieve this. Additionally, I utilized DAX functions to create calculated columns and tables, enhancing the depth of data analysis.",
127
+ "I implemented row-level security functionality within Power BI to ensure data security and access control. This allowed for fine-grained control over data access based on user roles and permissions. Furthermore, I implemented incremental refresh techniques to optimize data loading and processing, ensuring efficient report performance and timely updates.",
128
+ "For seamless data integration, I leveraged the AWS-RDS MySQL database. This involved connecting Power BI to the database, and establishing a secure and reliable data connection. By utilizing the DAX logical operations, I provided robust calculation support, enabling accurate and precise analysis of the data."
129
+ ]
130
+
131
+ bullet_points = f"<ul style='list-style-type: disc; padding-left: 15px;'>" \
132
+ + "".join([f"<li>{item}</li>" for item in cr_pro_pointers]) + "</ul>"
133
+ st.write(bullet_points, unsafe_allow_html=True)
134
+
135
+ def display_education_certificate(self):
136
+ st.header("Education and Certificate:")
137
+
138
+ with st.expander("**Certifications**"):
139
+ Cer = ["Deep Learning – Andrew NG",
140
+ "Data Analytics – Google",
141
+ "SQL – Online",
142
+ "Data Science/ Deep learning – CampusX"
143
+ ]
144
+ # Create bullet point list using HTML unordered list (<ul>) and list items (<li>)
145
+ bullet_points = f"<ul style='list-style-type: disc; padding-left: 15px;'>" \
146
+ + "".join([f"<li>{item}</li>" for item in Cer]) + "</ul>"
147
+ st.write(bullet_points, unsafe_allow_html=True)
148
+
149
+
150
+ with st.expander("**Education**"):
151
+ edu = ["ABES: B. Tech (ME) - 2019",
152
+ "Edyoda: Data Science -2021",
153
+ "Coursera: Deep Learning -2022",
154
+ "Google: Data Analytics -2021"
155
+ ]
156
+ # Create bullet point list using HTML unordered list (<ul>) and list items (<li>)
157
+ bullet_points = f"<ul style='list-style-type: disc; padding-left: 15px;'>" \
158
+ + "".join([f"<li>{item}</li>" for item in edu]) + "</ul>"
159
+ st.write(bullet_points, unsafe_allow_html=True)
160
+