-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
147 lines (131 loc) · 6.79 KB
/
services.html
File metadata and controls
147 lines (131 loc) · 6.79 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services — Antonio de la Vega de León</title>
<meta name="description" content="Design and implementation of ML workflows for drug discovery as well as teaching ML and chemoinformatics.">
<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" class="nav-active">Services</a></li>
<li><a href="blog.html">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">consulting</span>
<h1>Services</h1>
</div>
<p style="font-size:0.95rem; color:var(--text-2); max-width:58ch; margin-bottom:0.5rem;">
I work with pharmaceutical and biotech teams to design machine learning workflows for drug discovery.
Whether you need a one-off analysis, a modelling pipeline, or ongoing scientific advisory, I can help.
</p>
<div class="service-list" style="margin-top:2rem;">
<div class="service-card">
<span class="mono-tag">machine learning</span>
<h3>Molecular Property Prediction</h3>
<p>
Building machine learning models to predict biological activity,
toxicity, or ADME properties from molecular structure. Designing workflows
to track models trained, their expected performance and impact on key
impact metrics for drug discovery projects
</p>
</div>
<div class="service-card">
<span class="mono-tag">explainability</span>
<h3>ML Model Interpretation & Explainability</h3>
<p>
Making black-box models understandable — identifying which structural features drive predictions,
flagging unreliable predictions, and generating actionable insights for medicinal chemistry teams.
</p>
</div>
<div class="service-card">
<span class="mono-tag">generative ai</span>
<h3>De-novo Drug Design</h3>
<p>
Implement computational chemical ideation engines, using traditional
chemoinformatic techniques and generative models, to provide high quality
molecular candidates for synthesis and evaluation.
</p>
</div>
<div class="service-card">
<span class="mono-tag">chemoinformatics</span>
<h3>Chemoinformatics Pipeline Development</h3>
<p>
Designing and implementing end-to-end chemoinformatics workflows: molecular fingerprint generation,
chemical space analysis, virtual screening pipelines, and matched molecular pair analysis.
</p>
</div>
<div class="service-card">
<span class="mono-tag">advisory</span>
<h3>Scientific Consulting & Advisory</h3>
<p>
Strategic guidance on ML and cheminformatics approaches for your drug discovery programme.
Includes literature review, method selection, and review of existing models or analyses.
</p>
</div>
<div class="service-card">
<span class="mono-tag">education</span>
<h3>Teaching ML and Cheminformatics</h3>
<p>
Workshops and training sessions for research teams — from introductory machine learning for
chemists to advanced topics in interpretable AI and foundational models for drug design.
</p>
</div>
</div>
<div class="cta-strip">
<div>
<h3>Let's work together</h3>
<p>Book a free 30-minute intro call to discuss your project.</p>
</div>
<a href="https://calendar.proton.me/bookings#srNPliRTvP3FDewAuttYXfh4r6iIdNgXm46-TZyGOKA=" class="btn-primary" target="_blank" rel="noopener">Book a call →</a>
</div>
</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>