-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
742 lines (678 loc) · 40.1 KB
/
index.html
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Analytics Tag -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-R246V7TX0G"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-R246V7TX0G');
</script>
<!-- Meta Information -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shaquille Pearson - Software Engineer</title>
<meta name="description" content="Shaquille Pearson is a Software Engineer based in Ontario, Canada, specializing in web development and data science. Explore Shaquille's portfolio to see examples of his work.">
<meta name="keywords" content="Software Engineer, Web Development, Data Science, Ontario, Canada">
<meta name="author" content="Shaquille Pearson">
<meta property="og:title" content="Shaquille Pearson - Software Engineer">
<meta property="og:description" content="Explore Shaquille Pearson's portfolio to see examples of his work.">
<meta property="og:image" content="./assets/Profile.jpeg">
<!-- Stylesheets and Favicon -->
<link rel="icon" href="./assets/favicon.png">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css">
<!-- JavaScript Files -->
<script src="script.js"></script>
<script src="https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>
</head>
<body>
<!-- Header and Navigation -->
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-center" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active"><a class="nav-link" href="#">About</a></li>
<li class="nav-item active"><a class="nav-link" href="#skills">Skills</a></li>
<li class="nav-item"><a class="nav-link" href="#experience">Experience</a></li>
<li class="nav-item"><a class="nav-link" href="#papers">Course Projects</a></li>
<li class="nav-item active"><a class="nav-link" href="#projects">Personal Projects</a></li>
</ul>
</div>
</nav>
</header>
<!-- Main Content -->
<main>
<!-- About Section -->
<section id="about" class="my-5">
<h2>About</h2>
<div class="about-content">
<div class="icon">
<i class="fa fa-address-card"></i>
</div>
<!-- Profile Image -->
<div class="col-lg-3 d-flex justify-content-end align-self-center mb-3">
<img src="./assets/Profile.jpeg" alt="Shaquille Pearson" class="img-fluid">
</div>
<!-- About Text and Contact Buttons -->
<div class="col-lg-9 d-flex flex-column align-self-center">
<h4>Software</h4>
<h5>[Research & Engineering]</h5>
<p class="about-text">
My name is Shaquille, I'm a Master's student in Computer Science at the University of Waterloo.
I focus on solving complex software engineering challenges, particularly in build systems, dependency management,
and emerging technologies like machine learning and blockchains. My goal is to continue advancing my expertise
while also making meaningful contributions to the software engineering community, whether in academia or industry.
</p>
<!-- Button Container for Contact and Resume -->
<div class="button-container">
<a href="mailto:[email protected]" class="button">
<i class="fa fa-envelope project-tags"></i>
<span>Contact</span>
</a>
<a href="assets/Shaquille_Pearson_Resume.pdf" class="button" download>
<i class="fa fa-download project-tags"></i>
<span>Resume</span>
</a>
<!-- Social Icons -->
<div class="about-icons">
<a href="https://github.com/SV592" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://linkedin.com/in/shaquille-pearson-47bb5a208/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="my-5">
<h2 class="skills">Skills</h2>
<!-- Carousel for Skill Categories -->
<div id="skillsCarousel" class="carousel slide" data-ride="carousel">
<div class="carousel-inner skills-wrapper">
<!-- Carousel Item: Programming Languages -->
<div class="carousel-item active">
<div class="icon">
<i class="fas fa-code carousel-icon"></i>
</div>
<div class="col-lg-9 mx-auto d-flex flex-column align-items-center">
<div class="title-icon-wrapper">
<h3>Programming Languages</h3>
</div>
<ul class="skills-container">
<!-- Row of Skills with Star Ratings -->
<!-- Additional Rows Create Pyrmid Style (adjust as you see fit)-->
<div class="row">
<li>Python
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</li>
<li>Javascript
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</li>
<li>TypeScript
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
</div>
<!-- Additional Row of Skills with Star Ratings -->
<div class="row">
<li>SQL
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
<li>C++
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
</div>
<!-- Additional Row of Skills with Star Ratings -->
<div class="row">
<li>Cypher
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
</div>
</ul>
</div>
</div>
<!-- Carousel Item: Frameworks -->
<div class="carousel-item">
<div class="icon">
<i class="fas fa-layer-group carousel-icon"></i>
</div>
<div class="col-lg-9 mx-auto d-flex flex-column align-items-center">
<div class="title-icon-wrapper">
<h3>Frameworks</h3>
</div>
<ul class="skills-container">
<!-- Row of Frameworks with Star Ratings -->
<div class="row">
<li>ReactJS
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</li>
<li>React Native
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
<li>ExpressJS
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
</div>
<!-- Additional Row of Frameworks with Star Ratings -->
<div class="row">
<li>jQuery
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
<li>PyTorch
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
</div>
<!-- Additional Row of Frameworks with Star Ratings -->
<div class="row">
<li>Django
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
</div>
</ul>
</div>
</div>
<!-- Carousel Item: Tools -->
<div class="carousel-item">
<div class="icon">
<i class="fas fa-toolbox carousel-icon"></i>
</div>
<div class="col-lg-9 mx-auto d-flex flex-column align-items-center">
<div class="title-icon-wrapper">
<h3>Tools</h3>
</div>
<ul class="skills-container">
<!-- Row of Frameworks with Star Ratings -->
<div class="row">
<li>NodeJS
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</li>
<li>Docker
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
<li>Pandas
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
</div>
<!-- Additional Row of Frameworks with Star Ratings -->
<div class="row">
<li>GitHub APIs
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
<li>CI/CD
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
</div>
<!-- Additional Row of Frameworks with Star Ratings -->
<div class="row">
<li>Linux CLI
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
</div>
</ul>
</div>
</div>
<!-- Carousel Item: Databases -->
<div class="carousel-item">
<div class="icon">
<i class="fas fa-database carousel-icon"></i>
</div>
<div class="col-lg-9 mx-auto d-flex flex-column align-items-center">
<div class="title-icon-wrapper">
<h3>Databases</h3>
</div>
</div>
<ul class="skills-container">
<!-- Row of Databases with Star Ratings -->
<div class="row">
<li>MongoDB
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</li>
<li>MySQL
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
<li>Firebase
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
</div>
<!-- Additional Row of Databases with Star Ratings -->
<div class="row">
<li>Firestore
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
<li>Neo4j
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
</div>
<!-- Additional Row of Databases with Star Ratings -->
<div class="row">
<li>Microsoft Access
<div class="star-rating">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
</div>
</li>
</div>
</ul>
</div>
</div>
<!-- Carousel Navigation Buttons -->
<a class="carousel-control-prev" href="#skillsCarousel" role="button" data-slide="prev">
<i class="fas fa-chevron-left fa-2x"></i>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#skillsCarousel" role="button" data-slide="next">
<i class="fas fa-chevron-right fa-2x"></i>
<span class="sr-only">Next</span>
</a>
</div>
</section>
<!-- Experience Section -->
<section id="experience" class="my-5">
<h2>Experience</h2>
<!-- Experience Content -->
<div class="experience-content">
<div class="experience-item">
<div class="experience-container icon">
<i class="fa fa-search"></i>
</div>
<h3 class="experience-title">Graduate Research Assistant @ (UoW)</h3>
<ul>
<li><b>Data Pipeline - </b> Designed and built a data filtration pipeline with <b>Python</b> and <b>Github's</b> <b>GraphQL</b> that processed over <b>1.27</b> million open-source
projects.
</li>
<li><b>Build Reproduction - </b>Led efforts to create reproducible build environments for <b>982</b> builds in the <b>NPM</b>
ecosystem using <b>Docker</b>, <b>Python</b>, and <b>GitHub Actions</b> and <b>YML</b> files.
</li>
<li><b>Algorithm Optimization - </b>Identified and categorized <b>156</b> new ghost commit patterns within the <b>Debian</b>
ecosystem. Designed mitigation strategies and improved <b>SSZ</b> algorithm accuracy by <b>14%</b>.
</li>
</ul>
<p class="experience-date">January 2023 - Present</p>
<a href="https://rebels.cs.uwaterloo.ca/" target="_blank">
<button class="button">
<i class="fa fa-link project-tags"></i>
<span>Software Rebels</span>
</button>
</a>
</div>
<!-- Experience Content -->
<div class="experience-item">
<div class="experience-container icon">
<i class="fa fa-school"></i>
</div>
<h3 class="experience-title">Instructional Apprentice/Teaching Assistant @ (UoW) </h3>
<ul>
<li><b>Technical Assistance</b> - Assisted <b>30+</b> students with coding assignments debugging code in <b>Python</b>.
</li>
<li><b>Teamwork & Leadership - </b> Communicated closely with course instructors and fellow instructional apprentices to
lead tutorials, proctor exams, and coordinate grading.
</li>
<li><b>Communication & Collaboration - </b>
Communicated effectively with students and instructors via email, forums
, and in-person meetings to address inquiries.
</li>
</ul>
<p class="experience-date">January 2023 - Present</p>
<a href="https://online.cs.uwaterloo.ca/courses/course-v1:UW+CS116+2024_01/course/" target="_blank">
<button class="button">
<i class="fa fa-link project-tags"></i>
<span>University of Waterloo</span>
</button>
</a>
</div>
<!-- Experience Content -->
<div class="experience-item">
<div class="experience-container icon">
<i class="fa fa-network-wired"></i>
</div>
<h3 class="experience-title">Junior ICT Officer @ (DPI)</h3>
<ul>
<li><b>Content Automation - </b>
Developed an automation system using <b>Node.js</b> and the <b>Axios</b> library to interact with
the DPI website’s <b>REST</b> CMS API, enabling automatic updates for news articles and press releases etc.
</li>
<li><b>Networking Traffic Monitoring - </b>
Used <b>Wireshark</b> and <b>Python</b> to monitor and identify/resolve traffic bottlenecks caused
by IP conflicts on DHCP-assigned devices by <b>9%</b>.</li>
<li><b>Database Optimization -</b> Conducted a full audit of <b>MySQL</b> DBMS to minimize redundant data and
implemented <b>B-Tree</b> indexing on frequently queried columns which reduced query response times by <b>13%</b>
</li>
</ul>
<p class="experience-date">August 2022 - January 2023</p>
<a href="https://dpi.gov.gy/" target="_blank">
<button class="button" >
<i class="fa fa-link project-tags"></i>
<span>
Department of Public Information
</span>
</button>
</a>
</section>
<!-- Course Projects/Papers Section -->
<section id="papers" class="my-5">
<h2>Course Projects</h2>
<!-- Preview Container -->
<div class="paper-preview">
<!-- Paper Content -->
<div class="paper">
<div class="icon">
<i class="fab fa-node-js paper-icon"></i>
</div>
<h4>Exploring Dependency Related Build Breakages In The NPM Ecosystem</h4>
<p>This project analyzes dependency-related build failures within the <b>NPM</b> ecosystem by
examining <b>JavaScript</b> projects. I utilized <b>Git</b> to track modifications in <b>package.json</b>
files and employed <b>Docker</b> to create isolated, reproducible build environments.
CI/CD pipelines, specifically <b>GitHub Actions</b>, were parsed to identify breaking changes,
while tools like <b>nektos/act</b> and <b>docker-compose</b> were used to simulate the build process locally.
</p>
<div class="paper-container">
<a href="assets/papers/Exploring Dependency Related Build Breakages In the NPM Ecosystem.pdf" class="button" target="_blank">
<i class="fa fa-file-pdf project-tags"></i>
<span>View</span>
</a>
<!-- Social Icons -->
<div class="paper-icons">
<a href="https://github.com/SV592/dependency_breakages_in_NPM/tree/main" target="_blank">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
<!-- Paper Content -->
<div class="paper">
<div class="icon">
<i class="fab fa-ethereum paper-icon"></i>
</div>
<h4>Code Review Practises On Ethereum Smart Contracts</h4>
<p>This project assesses the effectiveness of code review for <b>Ethereum</b> smart contracts
across major projects like <b>Uniswap</b> and <b>Aave</b>.
Which represent some of the most widely used protocols in the blockchain ecosystem,
where security vulnerabilities can lead to significant financial losses.
Using <b>Git</b> for version control and <b>Slither</b> for <b>static analysis</b>, vulnerabilities
such as <b>reentrancy</b>, <b>unchecked transfers</b>, and <b>zero-address</b> issues were identified.
</p>
<div class="paper-container">
<a href="assets/papers/Code Review Practises On Etherum Smart Contracts.pdf" class="button" target="_blank">
<i class="fa fa-file-pdf project-tags"></i>
<span>View</span>
</a>
<!-- Social Icons -->
<div class="paper-icons">
<a href="https://github.com/SV592/code_review_on_ethereum" target="_blank">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
<!-- Paper Content -->
<div class="paper">
<div class="icon">
<i class="fas fa-cogs paper-icon"></i>
</div>
<h4>Predicting Build Breakage With Machine Learning.</h4>
<p>This project is a literature survey focused on applying <b>machine learning</b> techniques to predict
build failures in Continuous Integration (CI) systems. It reviews a range of approaches,
including <b>Random Forests</b>, <b>Logistic Regression</b>, and <b>Deep Learning</b>,
The survey explores key factors influencing <b>model performance</b>, such as <b>code complexity</b>, <b>commit frequency</b>,
and <b>noise</b> in the data. It also examines statistical methods like <b>ANOVA</b> and <b>Principal Component Analysis (PCA)</b>.</p>
<div class="paper-container">
<a href="assets/papers/Predicting Build Breakage with Machine Learning.pdf" class="button" target="_blank">
<i class="fa fa-file-pdf project-tags"></i>
<span>View</span>
</a>
</div>
</div>
<!-- Paper Content -->
<div class="paper">
<div class="icon">
<i class="fas fa-language paper-icon"></i>
</div>
<h4>Exploring the Prevalence of Social Biases In State Of The Art large language Models</h4>
<p>This project investigates the prevalence of social biases in large language models like <b>GPT-2</b>,
<b>DistilGPT-2</b>, <b>Bloom-560M</b>, and <b>Facebook-OPT-350M</b>, hosted on Hugging Face.
By analyzing the behavior of these models with prompts designed to evoke toxic or
biased responses, we utilized tools like the <b>Perspective API</b> to assess generated content across
attributes such as toxicity, identity attack, and profanity.</p>
<div class="paper-container">
<a href="assets/papers/Exploring the Prevalence of Social Biases in State of the Art large language Models.pdf" class="button" target="_blank">
<i class="fa fa-file-pdf project-tags"></i>
<span>View</span>
</a>
<!-- Social Icons -->
<div class="paper-icons">
<a href="https://github.com/SV592/social_bias_in_LLMs" target="_blank">
<i class="fab fa-github"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Personal Projects Section -->
<section id="projects" class="my-5">
<h2>Personal Projects</h2>
<!-- Project List -->
<ul class="list-group">
<!-- Project Item -->
<li class="list-group-item project">
<div class="icon">
<i class="fas fa-project-diagram language-icon"></i>
</div>
<h3 class="font-color">Github GraphQL</h3>
<p>React-based web application <br>that interfaces with the GitHub GraphQL API,
allowing users to search and retrieve<br> detailed information about GitHub repositories,
for collecting/exploring repository data using GraphQL queries.</p>
<div class="project-details">
<a href="https://github.com/SV592/github_graph_ql" target="_blank" class="button">
<i class="fab fa-github project-tags"></i> <span>View</span>
</a>
<div class="about-icons">
<i class="fab fa-react"></i>
<i class="fab fa-js"></i>
</div>
</div>
</li>
<!-- Project Item -->
<li class="list-group-item project">
<div class="icon">
<i class="fab fa-readme language-icon"></i>
</div>
<h3 class="font-color">Flashcard</h3>
<p>A Flashcard App built using React Native,<br> allowing users to create, edit,
and store flashcards locally with persistent storage through React Native Local
<br>Storage. The app is designed for offline use, providing a simple and effective tool for studying and reviewing information.</p>
<div class="project-details">
<a href="https://github.com/SV592/Flashcard-App-" target="_blank" class="button">
<i class="fab fa-github project-tags"></i> <span>View</span>
</a>
<div class="about-icons">
<i class="fab fa-react"></i>
<i class="fab fa-js"></i>
</div>
</div>
</li>
<!-- Project Item -->
<li class="list-group-item project">
<div class="icon">
<i class="fas fa-hourglass-end language-icon"></i>
</div>
<h3 class="font-color">Pomodoro</h3>
<p>A Pomodoro App built using React Native
<br>that helps users manage their time using the Pomodoro Technique. The app features customizable
<br>timers for focused work sessions and breaks, providing a simple and efficient tool for improving productivity.</p>
<div class="project-details">
<a href="https://github.com/SV592/Pomodoro-App-" target="_blank" class="button">
<i class="fab fa-github project-tags"></i> <span>View</span>
</a>
<div class="about-icons">
<i class="fab fa-react"></i>
<i class="fab fa-js"></i>
</div>
</div>
</li>
</ul>
</section>
</main>
<!-- Footer Section -->
<footer>
<div class="footer-center">
<p class="text-sm">© 2024 Shaquille Pearson </p>
</div>
</footer>
</body>
</html>