-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (54 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Ron Taieb - Data Science & Code">
<title>Ron Taieb - Data Science & Code</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=David+Libre:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<section id="intro">
<header>
<div class="profile-image">
<img src="photo_of_me.jpg" alt="Ron Taieb">
</div>
<div class="header-text">
<h1>Ron Taieb</h1>
<p>Data Science & Code</p>
</div>
</header>
</section>
<section id="about" class="section-box">
<h2>About Me</h2>
<p>I am a data scientist with a strong focus on deep learning, natural language processing, and advanced statistical modeling. My work ranges from building machine learning models to conducting research in computational musicology.</p>
</section>
<section id="projects" class="section-box">
<h2>Projects</h2>
<div class="project-container">
<div class="project">
<img src="diffusion_img.png" alt="Diffusion Models">
<a href="https://github.com/ron-taieb/SchedNoise-Diffusion" target="_blank">Diffusion Models with Alternative Noising Distributions and Schedules</a>
</div>
<div class="project">
<img src="goodreads_topic_modeling.png" alt="Goodreads Fantasy">
<a href="https://github.com/ron-taieb/Goodreads-Fantasy-Subgenre-Classification" target="_blank">Goodreads Fantasy Subgenre Classification</a>
</div>
<div class="project">
<img src="kcentrods.png" alt="K-Centroids Clustering">
<a href="https://github.com/ron-taieb/Robust-KCentroids-Clustering" target="_blank">Performance Comparison of K-Centroids Algorithms</a>
</div>
</div>
</section>
<section id="contact" class="section-box">
<h2>Contact</h2>
<p>You can connect with me on <a href="https://www.linkedin.com/in/ron-taieb-7991231bb/" target="_blank">LinkedIn</a>.</p>
</section>
<footer>
<p>© 2024 Ron Taieb</p>
</footer>
</div>
</body>
</html>