-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
111 lines (104 loc) · 5.67 KB
/
blog.html
File metadata and controls
111 lines (104 loc) · 5.67 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
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog — Antonio de la Vega de León</title>
<meta name="description" content="Technical posts on machine learning, cheminformatics, and applied data science for drug discovery.">
<script>(function(){try{var s=localStorage.getItem('theme')}catch(e){var s=null}var p=window.matchMedia('(prefers-color-scheme: dark)').matches?'dark':'light';var t=s||p;document.documentElement.setAttribute('data-theme',t);document.documentElement.style.backgroundColor=t==='dark'?'#0e1926':'#f4f6fb';})();</script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400&family=Lexend:wght@200;300;400&display=swap" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script defer src="https://cloud.umami.is/script.js" data-website-id="60367f78-1d6d-4f24-9a3f-60e2731ed781"></script>
</head>
<body>
<nav class="site-nav" id="site-nav">
<a class="nav-logo" href="index.html">delavega.ai</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="blog.html" class="nav-active">Blog</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="about.html">About</a></li>
</ul>
<button class="theme-toggle" onclick="toggleTheme()" aria-label="Toggle theme">◐ <span class="theme-toggle-label">light</span></button>
<button class="nav-hamburger" onclick="toggleNav()" aria-label="Open menu">☰</button>
</nav>
<main>
<div class="container">
<div class="page-header">
<span class="mono-tag">writing</span>
<h1>Blog</h1>
</div>
<ul class="blog-list">
<li class="blog-entry">
<span class="blog-entry-date">2026-05-01</span>
<a class="blog-entry-title" href="posts/2026_05_01_ml_optimization.html">PXR Challenge #3: Ensembling is all you need?</a>
<span class="blog-entry-tag">blind challenge</span>
</li>
<li class="blog-entry">
<span class="blog-entry-date">2026-04-22</span>
<a class="blog-entry-title" href="posts/2026_04_22_ml_baseline.html">PXR Challenge #2: Training and Comparing ML Baseline Models</a>
<span class="blog-entry-tag">blind challenge</span>
</li>
<li class="blog-entry">
<span class="blog-entry-date">2026-04-15</span>
<a class="blog-entry-title" href="posts/2026_04_15_pxr_sar_exploration.html">PXR challenge #1: Exploring the data</a>
<span class="blog-entry-tag">blind challenge</span>
</li>
<li class="blog-entry">
<span class="blog-entry-date">2026-04-10</span>
<a class="blog-entry-title" href="posts/2026_04_10_brief_update.html">PXR challenge #0: A brief update</a>
<span class="blog-entry-tag">blind challenge</span>
</li>
<li class="blog-entry">
<span class="blog-entry-date">2026-04-07</span>
<a class="blog-entry-title" href="posts/2026_04_07_first_contact_with_data.html">PXR challenge #0: First contact with the data</a>
<span class="blog-entry-tag">blind challenge</span>
</li>
<li class="blog-entry">
<span class="blog-entry-date">2026-03-26</span>
<a class="blog-entry-title" href="posts/2026_03_26_pxr_challenge.html">Joining the OpenADMET PXR Blind Challenge</a>
<span class="blog-entry-tag">blind challenge</span>
</li>
<li class="blog-entry">
<span class="blog-entry-date">2025-10-09</span>
<a class="blog-entry-title" href="posts/2025_10_09_fp_comparison.html">Fingerprint Comparison for Machine Learning Models</a>
<span class="blog-entry-tag">cheminformatics</span>
</li>
</ul>
</div>
</main>
<footer class="site-footer">
<span class="footer-logo">delavega.ai · 2026</span>
<ul class="footer-links">
<li><a href="https://www.linkedin.com/in/adlvdl/" target="_blank" rel="noopener">LinkedIn</a></li>
<li><a href="https://orcid.org/0000-0003-0927-2099" target="_blank" rel="noopener">ORCID</a></li>
<li><a href="https://www.researchgate.net/profile/Antonio_De_La_Vega_De_Leon" target="_blank" rel="noopener">ResearchGate</a></li>
</ul>
</footer>
<script>
function toggleTheme() {
var current = document.documentElement.getAttribute('data-theme');
var next = current === 'dark' ? 'light' : 'dark';
document.documentElement.setAttribute('data-theme', next);
document.documentElement.style.backgroundColor = next === 'dark' ? '#0e1926' : '#f4f6fb';
try { localStorage.setItem('theme', next); } catch(e) {}
document.querySelectorAll('.theme-toggle-label').forEach(function(el) { el.textContent = next; });
}
function toggleNav() { document.getElementById('site-nav').classList.toggle('nav-open'); }
document.addEventListener('click', function(e) {
var nav = document.getElementById('site-nav');
if (nav.classList.contains('nav-open') && !nav.contains(e.target)) nav.classList.remove('nav-open');
});
document.querySelectorAll('.nav-links a').forEach(function(l) {
l.addEventListener('click', function() { document.getElementById('site-nav').classList.remove('nav-open'); });
});
(function() {
var theme = document.documentElement.getAttribute('data-theme') || 'light';
document.querySelectorAll('.theme-toggle-label').forEach(function(el) { el.textContent = theme; });
})();
</script>
</body>
</html>