-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (93 loc) · 3.14 KB
/
index.html
File metadata and controls
108 lines (93 loc) · 3.14 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Matt Poncini | ML & Optimization</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<!-- Header -->
<h1>Matt Poncini</h1>
<p>
Graduate Computer Science student specializing in
<strong>machine learning, optimization, and algorithm design</strong>,
with a military and education background.
</p>
<p class="links">
🔗 <a href="https://github.com/MPoncini96">GitHub</a>
<a href="https://www.linkedin.com/in/matt-poncini/">LinkedIn</a>
</p>
<!-- About Section -->
<section>
<h2>About Me</h2>
<div class="about">
<img
src="images/marathon.jpeg"
alt="Matt Poncini after completing a marathon"
class="about-photo"
/>
<div class="about-text">
<p>
I’m a graduate student in Computer Science with a strong focus on machine
learning, optimization, and algorithm design. Prior to graduate school,
I served six years in the military as a reservist and began my career in
education.
</p>
<p>
My work sits at the intersection of theory and practice, where I build,
evaluate, and document models that solve complex, real-world problems.
</p>
</div>
</div>
</section>
<!-- Projects -->
<section>
<h2>Selected Projects</h2>
<ul>
<li>
<strong>QLoRA Fine-Tuning of LLaMA-2-7B</strong><br />
Domain-specific fine-tuning using QLoRA, PEFT, and Hugging Face.
<a href="https://github.com/MPoncini96/QLoRA-FineTuning-Llama2-Finance-Alpaca">
View on GitHub
</a>
</li>
<li>
<strong>Bottleneck Traveling Salesman Problem</strong><br />
Simulated Annealing, Niching Genetic Algorithms, and an LKH baseline.
<a href="https://github.com/MPoncini96/Bottleneck-TSP-Solutions-with-SA-and-Niching-GA-and-a-LKH-Baseline">
View on GitHub
</a>
</li>
<li>
<strong>Peptide Unsupervised Clustering</strong><br />
UMAP and HDBSCAN for exploratory bioinformatics analysis.
<a href="https://github.com/MPoncini96/Peptide-Unsupervised-Clustering-with-UMAP-and-HDBSCAN">
View on GitHub
</a>
</li>
<li>
<strong>OSSP Wisdom-of-Crowds GA Hybrid</strong><br />
Crowd-inspired genetic algorithm for open shop scheduling optimization.
<a href="https://github.com/MPoncini96/OSSP-Scheduler-WoC-GA-Hybrid">
View on GitHub
</a>
</li>
</ul>
</section>
<!-- Interests -->
<section>
<h2>Interests</h2>
<p>
Machine learning, optimization, metaheuristics, large language models,
applied AI, and data-driven decision making.
</p>
</section>
<!-- Footer -->
<footer>
© Matt Poncini · Built with GitHub Pages
</footer>
</div>
</body>
</html>