forked from sproogen/modern-resume-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
242 lines (224 loc) · 13.9 KB
/
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# Site
repository: Git repository where your resume will be hosted, only required if you are hosting on GitHub (eg. sproogen/modern-resume-theme)
# favicon: Directory of your favicon (eg. images/favicon.ico)(optional)
# Content configuration version
version: 2
# Personal info
name: Xianglong Xu
title: Currently Pursuing MSIS at the Pitt
email: [email protected]
# email_title: Email (Email title override)
phone: +1 412-452-5278
# phone_title: Phone (Phone title override)
website: https://github.com/Sean652039
# website_title: Web (Website title override)
# Dark Mode (true/false/never)
darkmode: false
# Social links
# twitter_username: jekyllrb
github_username: Sean652039
#stackoverflow_username: "00000001"
# dribbble_username: jekyll
# facebook_username: jekyll
# flickr_username: jekyll
# instagram_username: jekyll
linkedin_username: xianglongxu
# xing_username: jekyll
# pinterest_username: jekyll
# youtube_username: jekyll
# orcid_username: 0000-0000-0000-0000
# googlescholar_username: D847cGsAAAAJ
# Additional icon links
# additional_links:
# - title: Link name
# icon: Font Awesome brand icon name (eg. fab fa-twitter) (https://fontawesome.com/icons?d=gallery&s=brands&m=free)
# url: Link url (eg. https://google.com)
# - title: another link
# icon: font awesome brand icon name (eg. fab fa-twitter) (https://fontawesome.com/icons?d=gallery&s=brands&m=free)
# url: Link url (eg. https://google.com)
# Google Analytics and Tag Manager
# Using more than one of these may cause issues with reporting
# gtm: "GTM-0000000"
# gtag: "UA-00000000-0"
# google_analytics: "UA-00000000-0"
# About Section
# about_title: About Me (Use this to override about section title)
about_profile_image: /images/profile.PNG
about_content: | # this will include new lines to allow paragraphs
👋 Hi there! I'm **Xianglong** (Or my English name **Sean**) **Xu**, currently pursuing a Master's degree in Information Science at the University of Pittsburgh, with a focus on AI. My academic journey began at North China Electric Power University, where I earned a Bachelor's degree in Intelligent Science and Technology from the Computer Science department.
🧠 My expertise lies in several machine learning algorithms, and I'm proficient in programming languages such as Python and R. I thrive on collaboration and am known for being outgoing. Fluent in English (with a score of 8 in IELTS Speaking), I easily connect with people from diverse cultures, fostering open communication and effective teamwork.
⚽ Outside the world of tech, I'm passionate about soccer. Beyond the excitement it brings, soccer has instilled in me a spirit of perseverance and resilience.
🌐 I'm always open to connecting with like-minded professionals, discussing AI, or exploring potential collaborations. Feel free to reach out to me via email at [email protected] or [email protected]. You can also connect with me directly on LinkedIn.
content:
- title: Education
layout: list
content:
- layout: top-left
title: University of Pittsburgh
sub_title: MS in Information Science
caption: 08/2023-Graduating 05/2025
quote: >
(GPA: 3.88/4.0)
description: | # this will include new lines to allow paragraphs
My studies at the University of Pittsburgh not only expanded my knowledge but, more importantly, the diverse cultural environment enriched my perspectives, providing insights that extend beyond the confines of textbooks. Interacting with individuals from various cultural backgrounds not only allowed me to approach AI from different angles but also enhanced my collaborative skills. This multicultural exposure has been instrumental in shaping my holistic understanding of artificial intelligence.
- layout: top-left
title: North China Electric Power University
sub_title: BS in Intelligent Science and Technology
caption: 09/2019-06/2023
quote: >
(GPA: 3.59/4.0)
description: | # this will include new lines to allow paragraphs
During my four years at North China Electric Power University, Intelligent Science and Technology, synonymous with the field of AI, became the focal point of my academic pursuits. Over this period, I not only acquired a profound understanding of crucial machine learning algorithms but also delved into the underlying mathematical principles, encompassing probability theory, linear algebra, and optimization theory.
This undergraduate journey not only laid a robust foundation for my subsequent pursuit of advanced studies in artificial intelligence but also honed my coding skills.
- title: Projects # Title for the section
layout: list # Type of content section (list/text)
content:
- layout: left
border: weak # Value of `weak` will display a weak border below this item. # Any
# other value (or no value) means no border will be displayed
title: LSTM-based text classification
link: https://github.com/Sean652039/NLP_Classification
link_text: GitHub
additional_links:
- title: GitHub
icon: fab fa-github
url: https://github.com/Sean652039/NLP_Classification
# - title: Github page for project (eg. sproogen/modern-resume-theme)
# icon: fab fa-github
# url: Link to project (eg. sproogen.github.io/modern-resume-theme)(optional)
quote: >
12/2023—01/2024
description: | # this will include new lines to allow paragraphs
- Utilizing jieba segmentation and part-of-speech tagging for text processing. Accomplished data preprocessing and sequence conversion.
- Constructing a vocabulary using a statistical word frequency approach. Incorporating stop-word filtering to enhance the model's robustness.
- Implemented a text classification model using `PyTorch`, inheriting from the nn.Module class. The model incorporates an embedding layer (nn.Embedding), an LSTM layer (nn.LSTM), and a fully connected layer (nn.Linear). To prevent overfitting, a Dropout layer (nn.Dropout) is included. The model processes input sequences through forward propagation (forward method) to produce classification predictions.
- Trained using Tencent AI Lab's word embeddings, the model achieves a test set accuracy exceeding 95%.
- layout: left
border: weak # Value of `weak` will display a weak border below this item. # Any
# other value (or no value) means no border will be displayed
title: Data Analysis for PPG Industries, Inc (ppg.com)
# link: Link to project (eg. sproogen.github.io/modern-resume-theme)(optional)
# link_text: Link Text
# additional_links:
# - title: Github page for project (eg. sproogen/modern-resume-theme)
# icon: fab fa-github
# url: Link to project (eg. sproogen.github.io/modern-resume-theme)(optional)
# - title: Github page for project (eg. sproogen/modern-resume-theme)
# icon: fab fa-github
# url: Link to project (eg. sproogen.github.io/modern-resume-theme)(optional)
quote: >
11/2023—12/2023
description: | # this will include new lines to allow paragraphs
- Employed `ggplot` for crafting insightful visualizations to elucidate complex relationships and input distributions.
- Utilized the `lm()` function for MLE modeling and rstanarm's `stan_lm()` for Bayesian modeling in both regression and classification tasks. Applied the `glmet` package to fit models with Lasso regularization techniques, enhancing robustness. Leveraged the `caret` package for training a variety of machine learning models, including Random Forest, Neural Network, SVM, and XGBoost, with a focus on model tuning for optimal performance.
- Employed a meticulous evaluation of diverse metrics to discern and select the best-performing models for both regression and classification tasks.
- layout: left
border: weak # Value of `weak` will display a weak border below this item. # Any
# other value (or no value) means no border will be displayed
title: Implication of Password Management Systems
link: https://sean652039.github.io/Pitt_HIP_Passwords.io/
link_text: Demonstration of the project
additional_links:
- title: Page for project
icon: fab fa-github
url: https://sean652039.github.io/Pitt_HIP_Passwords.io/
# - title: Github page for project (eg. sproogen/modern-resume-theme)
# icon: fab fa-github
# url: Link to project (eg. sproogen.github.io/modern-resume-theme)(optional)
quote: >
11/2023—12/2023
description: | # this will include new lines to allow paragraphs
- Implemented a novel approach inspired by the "Google Effect" on memory to address potential challenges in emergency password recall within password management systems.
- Introduced a segmented password system, compelling users to input randomly selected segments during login, effectively boosting engagement and facilitating improved recall, especially in emergency scenarios.
- layout: left
border: weak # Value of `weak` will display a weak border below this item. # Any
# other value (or no value) means no border will be displayed
title: YOLO-Based Vehicle Detection
link: https://blog.csdn.net/qq_46684105/article/details/132132725?spm=1001.2014.3001.5501
link_text: Solved Issues (CN)
additional_links:
# - title:
# icon:
# url:
# - title: Github page for project (eg. sproogen/modern-resume-theme)
# icon: fab fa-github
# url: Link to project (eg. sproogen.github.io/modern-resume-theme)(optional)
quote: >
03/2023—06/2023
description: | # this will include new lines to allow paragraphs
- Proposed a YOLOv7-based model for vehicle detection, trained & validated with UA-DETRAC dataset.
- Adopted a frame sampling strategy (2 frames for training, 10 frames for validation) to mitigate overfitting risks in a 25 fps video dataset. Innovatively included random test set folders in training to improve model adaptability and handle distribution differences.
- Successfully deployed the optimized model on Android, utilizing the NCNN open-source framework from GitHub. This ensures efficient and resource-friendly execution on mobile devices.
- layout: left
border: weak # Value of `weak` will display a weak border below this item. # Any
# other value (or no value) means no border will be displayed
title: The Influence of Dominant Response on Non-dominant Response (The Stroop Effect)
link: https://github.com/Sean652039/Stroop
link_text: GitHub
additional_links:
- title: GitHub
icon: fab fa-github
url: https://github.com/Sean652039/Stroop
# - title: Github page for project (eg. sproogen/modern-resume-theme)
# icon: fab fa-github
# url: Link to project (eg. sproogen.github.io/modern-resume-theme)(optional)
quote: >
04/2021—05/2021
description: | # this will include new lines to allow paragraphs
- Study the Stroop effect, focusing on non-dominant vs. dominant responses' impact.
- Adapted Python's `Pygame` library for visualizing word colors and developed the experimental platform.
- Optimized code, reducing run time and improving code structure.
- title: Corporate Learning Experience
layout: list
content:
- layout: left
title: Yunnan Gold Mining Group Co. LTD.
sub_title: Information Center Department
caption: 02/2022 (whole month)
# link: Link to company (optional)
# quote: >
# Short description of the company (optional)
description: | # this will include new lines to allow paragraphs
Revamped digital mine management with data-driven strategies, visualized safety data, and documented detailed maintenance records. Participated in a reform meeting for enhancing digital manufacturing.
- layout: left
title: Yunnan Gold Mining Group Co. LTD.
sub_title: Human Resources Department
caption: 08/2020 (whole month)
# link: Link to company (optional)
# quote: >
# Short description of the company (optional)
description: | # this will include new lines to allow paragraphs
Updated and maintained the employee database, analyzed HR data, and coordinated with departments for policy implementation. Supported internal training and communication initiatives.
- title: A Little More About Me
layout: text
content: | # this will include new lines to allow paragraphs
Apart from **studying**, my greatest passion lies in **exploring the unknown**. I love delving into **diverse cultures**, aspiring to travel far and wide, and engage as much as possible with the **local communities**. Along the way, I also indulge in **photography**, using the language of the lens to articulate my understanding of the world.
- Beijing
![](/images/Beijing.JPG "Beijing")
- Lake Ontario
![](/images/Lake_Ontario.JPG "Ontario")
- Edinburgh
![](/images/Edinburgh.JPG "Edin")
# Footer
footer_show_references: true
# references_title: References on request (Override references text)
# Build settings
# theme: modern-resume-theme (Use this is you are hosting your resume yourself)
# remote_theme: sproogen/modern-resume-theme (Use this if you are hosting your resume on GitHub)
sass:
sass_dir: _sass
style: compressed
plugins:
- jekyll-seo-tag
exclude : [
"Gemfile",
"Gemfile.lock",
"node_modules",
"vendor/bundle/",
"vendor/cache/",
"vendor/gems/",
"vendor/ruby/",
"lib/",
"scripts/",
"docker-compose.yml",
]