-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (83 loc) · 5.94 KB
/
index.html
File metadata and controls
91 lines (83 loc) · 5.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yixin Huang</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/main.css"> <!-- Link to the new CSS file -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- Removed inline style block for .profile-img and other general styles as they are now in main.css or Bootstrap -->
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top">
<div class="container">
<a class="navbar-brand" href="#">Yixin Huang</a>
<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" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item"><a class="nav-link" href="#experience">Experience</a></li>
<li class="nav-item"><a class="nav-link" href="#interests">Interests</a></li>
<li class="nav-item"><a class="nav-link" href="#skills">Skills</a></li>
<li class="nav-item"><a class="nav-link" href="#education">Education</a></li>
<li class="nav-item"><a class="nav-link" href="#connect">Connect</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<header class="text-center mb-5 pt-5" id="home"> <!-- Added pt-5 for spacing due to sticky nav -->
<img src="my_photo.jpg" alt="Yixin Huang" class="profile-img mb-3" style="width: 200px; height: auto; border-radius: 50%;"> <!-- Updated image size and added styling for clarity -->
<h1>Yixin Huang</h1>
<p class="lead">AI/ML Engineer & Researcher</p>
<p><a href="mailto:yixinhuang1@berkeley.edu">yixinhuang1@berkeley.edu</a></p>
</header>
<section id="about" class="mb-5 pt-5"> <!-- Added pt-5 for spacing due to sticky nav -->
<h2>About Me</h2>
<p>I am a recent graduate from UC Berkeley with a B.A. in Computer Science and a B.A. in Applied Mathematics (May 2025, GPA: 3.86/4.00). As an AI/ML Engineer and Researcher, I am passionate about advancing the field of AI, particularly in LLM evaluation and MLSys, and driven to create technology that understands and enhances human experiences.</p>
<p>Currently, I am expanding my expertise by learning about MLSys and CUDA to deepen my understanding of system-level optimizations and GPU programming for AI workloads.</p>
</section>
<section id="experience" class="mb-5 pt-5"> <!-- Added pt-5 for spacing due to sticky nav -->
<h2>Experience</h2>
<p>During my studies at UC Berkeley, I had the privilege of working as a <strong>Research Assistant at the Sky Computing Lab</strong>, advised by Prof. Joey Gonzalez and Prof. Ion Stoica. In this role, I engineered a scalable data pipeline for Openfunctions-v3, led data cleaning efforts for the BFCL-v3 leaderboard (which received recognition from organizations like Meta, Salesforce, and Alibaba)</p>
<p>I also contributed to the <strong>Chatbot Arena Project at LMSYS.org</strong>, focusing on crowdsourced AI evaluation. I have contributed to enhancing LLM evaluation methodologies using LLM-as-a-Judge for Arena-Hard-v2.</p>
</section>
<section id="interests" class="mb-5 pt-5"> <!-- Added pt-5 for spacing due to sticky nav -->
<h2>Interests</h2>
<p>My primary interests lie in the fundamental challenges of training large-scale models, improving the capabilities and reliability of AI systems, and exploring the frontiers of LLM evaluation. I am dedicated to developing technology that not only performs effectively but also aligns with human values and experiences.</p>
</section>
<section id="skills" class="mb-5 pt-5"> <!-- Added pt-5 for spacing due to sticky nav -->
<h2>Skills</h2>
<ul>
<li><strong>AI/ML & Deep Learning:</strong> PyTorch, TensorFlow, Hugging Face, LLMs, Transformers, Fine-tuning, RAG, NLP, vLLM, Unsloth</li>
<li><strong>Programming Languages:</strong> Python, C++, Java, Rust, JavaScript, SQL, Bash, C#</li>
<li><strong>Data Science & Analytics:</strong> Scikit-learn, XGBoost, LightGBM, Pandas, NumPy, Spark, MapReduce</li>
<li><strong>Backend & Infrastructure:</strong> FastAPI, PostgreSQL, Docker, RabbitMQ, Linux, Git, RPC</li>
</ul>
</section>
<section id="education" class="mb-5 pt-5"> <!-- Added pt-5 for spacing due to sticky nav -->
<h2>Education</h2>
<p><strong>UC Berkeley</strong></p>
<ul>
<li>B.A. Computer Science</li>
<li>B.A. Applied Mathematics</li>
<li>Graduated: May 2025</li>
<li>GPA: 3.86/4.00</li>
</ul>
</section>
<section id="connect" class="text-center mb-5 pt-5"> <!-- Added pt-5 for spacing due to sticky nav -->
<h2>Connect with Me</h2>
<p>
<a href="https://github.com/yixin-huang1" class="btn btn-dark mr-2"><i class="fab fa-github"></i> GitHub</a>
<a href="https://www.linkedin.com/in/yixin-huang-91b7781aa/" class="btn btn-primary"><i class="fab fa-linkedin"></i> LinkedIn</a>
</p>
</section>
<footer class="text-center mt-5">
<p>© 2025 Yixin Huang. Hosted by GitHub Pages.</p>
</footer>
</div>
</body>
</html>