-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
482 lines (458 loc) · 23.2 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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<!DOCTYPE html>
<html lang="en">
<head>
<title>Daniel Ruiz</title>
<!-- Meta tags -->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="Daniel Ruiz, MSc" />
<meta name="author" content="Daniel Ruiz, MSc" />
<meta name="copyright" content="Copyright 2024" />
<meta name="language" content="english" />
<meta name="google" />
<meta name="googlebot" content="notranslate" />
<meta name="revised" content="Monday, April 5th, 2024, 20:48 pm" />
<meta name="robots" content="index" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Social media cards -->
<meta
property="og:description"
content="Daniel Ruiz, MSc in Data Science. I give you the power of AI."
/>
<meta property="og:image" content="./assets/images/daniel-ruiz-portrait-square-zoom.jpg" />
<meta property="og:title" content="Daniel Ruiz, MSc" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.danielruiz.nl" />
<!-- External CSS files -->
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons+Sharp"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,600&display=swap"
/>
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/line.css" />
<link rel="stylesheet" href="https://unicons.iconscout.com/release/v4.0.0/css/solid.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200"
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.css" />
<!-- Preconnect links -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous" />
<!-- External JavaScript files -->
<script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
<script src="scripts/functions.js"></script>
</head>
<body>
<nav>
<div class="container">
<a href="#">
<h3>Daniel Ruiz</h3>
</a>
<ul>
<li><a href="#" class="active">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Let's Talk</a></li>
</ul>
<button id="menu-btn">
<span class="material-symbols-sharp">menu</span>
</button>
<button id="close-btn">
<span class="material-symbols-sharp">close</span>
</button>
</div>
</nav>
<section class="landing">
<div class="container">
<div class="socials">
<a
href="https://www.linkedin.com/in/econometrics/"
target="_blank"
title="Visit my LinkedIn profile"
>
<i class="uil uil-linkedin"></i>
</a>
<a
href="https://github.com/thegitofdaniel"
target="_blank"
title="Visit my GitHub profile"
>
<i class="uil uil-github"></i>
</a>
<a
href="https://medium.com/@theblogofdaniel"
target="_blank"
title="Visit my Medium profile"
>
<i class="uil uil-medium-m"></i>
</a>
</div>
<div class="info">
<h1>Senior Consultant in Data & AI</h1>
<h3>Hi, I'm Daniel Ruiz</h3>
<p>
As a Machine Learning Engineer, my passion lies in harnessing technology to
create tangible value and solve real-world challenges. I have led companies
in their digital transformation, end-to-end from project inception to
execution and hand-off. Join me in exploring the curious fields of AIML and
MLOPS, where complex problems meet cutting-edge solutions.
</p>
<a href="#contact" class="btn btn-primary">Let's Talk</a>
<a class="btn btn-primary" onclick="downloadFile()">
<i class="uil uil-download-alt"></i>
Download CV
</a>
</div>
<div class="profile-area">
<div class="outer-circle">
<span class="material-symbols-outlined">design_services</span>
<span class="material-symbols-outlined">payments</span>
<span class="material-symbols-outlined">code</span>
<span class="material-symbols-outlined">subscriptions</span>
</div>
<div class="inner-circle">
<img
src="./assets/images/daniel-ruiz-portrait-square-zoom.jpg"
alt="Daniel Ruiz Portrait"
/>
</div>
</div>
</div>
</section>
<section class="about" id="about">
<h1>About</h1>
<div class="container">
<div class="flex-container">
<div class="flex-item">
<img src="./assets/images/dalle-upward-arrow.png" alt="Upward Arrow" />
</div>
</div>
<div class="flex-container">
<div class="flex-item">
<div class="info">
<p>
I have developed awesome projects to clients in Brazil, Canada,
Germany, Mexico, The Netherlands, and Switzerland. By assessing the
root cause of their challenges and chosing the best technology, I've
unlocked value and positive change. I've made a tangible impact on
both my clients' success and the broader landscape of innovation.
It's a journey fueled by passion and purpose, and I'm excited to
continue making strides in this ever-evolving field.
</p>
<div class="read-more-content">
<p>
Since 2020, I've played a pivotal role in building greenfield
Data Platforms to enable large-caps on AIML and maximize the
value derived from data. My contributions include developing
models for Energy and Gas consumption using Azure Machine
Learning, utilizing state-of-the-art algorithms to input missing
data, establishing MLOPS processes for model deployment,
implementing robust data pipelines, and introducing agile
methodologies to strengthen team collaboration.
</p>
<p>
In addition to my core responsibilities, I've also been actively
involved in fostering a culture of continuous learning and
innovation within the teams I've worked with. This has included
organizing knowledge-sharing sessions, conducting workshops on
emerging technologies and best practices, and mentoring junior
team members to help them grow their skills and expertise in
data science and machine learning. Furthermore, I've been
instrumental in fostering strong cross-functional relationships
between data science, engineering, and business stakeholders,
ensuring alignment of objectives and effective communication
channels throughout project life-cycles. By championing a
collaborative and growth-oriented environment, I've helped
foster a sense of ownership and accountability among team
members, resulting in greater efficiency and success in
achieving our project goals.
</p>
</div>
<a class="read-more">Show More</a>
</div>
</div>
</div>
</div>
</section>
<section class="skills" id="skills">
<h1>Skills</h1>
<div class="container">
<div class="skill">
<div class="head">
<div class="left">
<span class="material-icons-sharp">model_training</span>
<h4>Model Development</h4>
</div>
<div class="right">
<span class="material-icons-sharp">expand_more</span>
</div>
</div>
<div class="items" id="items1"></div>
<script>
var items = [
['Econometrics', 100],
['Time-Series Analysis', 100],
['Machine Learning', 100],
['Classification Models', 100],
['Regression Analysis', 100],
['Forecasting', 100],
['Bayesian Methods', 100],
['Support Vector Machines (SVM)', 100],
['Dimensionality Reduction', 100],
['Feature Engineering', 100],
['Model Validation and Evaluation', 100],
['Anomaly Detection', 100],
['Hyperparameter Tuning', 100],
['Deep Learning', 90],
['Natural Language Processing (NLP)', 90],
['Ensemble Methods', 90],
['Computer Vision', 80],
['Reinforcement Learning', 80],
['Explainable AI (XAI)', 80],
['Transfer Learning', 80]
];
generateProgressItems('items1', items);
</script>
</div>
<div class="skill">
<div class="head">
<div class="left">
<span class="material-icons-sharp">diversity_3</span>
<h4>MLOPS</h4>
</div>
<div class="right">
<span class="material-icons-sharp">expand_more</span>
</div>
</div>
<div class="items" id="items2"></div>
<script>
var items = [
[
'Continuous Integration and Continuous Deployment (CI/CD) for ML',
100
],
['Model Versioning and Management', 100],
['Automated Model Testing and Validation', 100],
['Azure Machine Learning', 100],
['Databricks', 100],
['Model Monitoring', 100],
['Model Experimentation and Tracking (Mlflow)', 100],
['Deployment', 100],
['ML Infrastructure and Resource Management (IaaC)', 100],
['Agile and Scrum', 100]
];
generateProgressItems('items2', items);
</script>
</div>
<div class="skill">
<div class="head">
<div class="left">
<span class="material-icons-sharp">payments</span>
<h4>Finance</h4>
</div>
<div class="right">
<span class="material-icons-sharp">expand_more</span>
</div>
</div>
<div class="items" id="items3"></div>
<script>
var items = [
['ESG Integration in Investment Analysis', 100],
['Corporate Finance Fundamentals', 100],
['Valuation Techniques and Models', 100],
['Fixed Income Securities Analysis', 100],
['Credit Risk Assessment and Management', 100],
['Interest Rate Risk Management', 100],
['Bond Pricing and Yield Analysis', 100],
['Portfolio Management Strategies for Fixed Income', 100],
['Financial Markets and Instruments Research', 100],
['Capital Structure and Funding Strategies', 100],
['Regulatory Compliance and Reporting in Finance', 100]
];
generateProgressItems('items3', items);
</script>
</div>
</div>
</section>
<section class="services" id="services">
<h1>Services</h1>
<div class="container">
<div class="service">
<span class="material-icons-sharp">model_training</span>
<h3>Model Development</h3>
<p>
I development professional Machine Learning and Econometric models using the
latest frameworks and technologies, and I am committed to generating a
value-adding solution. The data and context should determine the complexity
of the solution adopted.
</p>
</div>
<div class="service">
<span class="material-icons-sharp">diversity_3</span>
<h3>MLOPS</h3>
<p>
I introduce Data & AI teams to best practices of MLOPS, Software
Engineering, and Agile. I help them work better together to deliver
excellent data products faster through proven Ways of Working. I help teams
master GitHub, Azure, and Databricks.
</p>
</div>
<div class="service">
<span class="material-icons-sharp">payments</span>
<h3>Finance</h3>
<p>
I coach selected companies and individuals on how to identify their
financial goals, set a winning strategy to achieve them, and execute it with
rigour and determination. I coach on financial well-being, fiscal and
retirement planning, and investing. My approach is based on Quantitative
Methods and Behavioral Economics.
</p>
</div>
</div>
</section>
<section class="portfolio" id="portfolio">
<h1>Portfolio</h1>
<div class="container">
<div class="projects">
<div class="project">
<div class="thumbnail">
<img src="./assets/images/pypi-interesting.png" alt="" />
</div>
<h2>interesting</h2>
<p>
The interesting Python package is a specialized toolkit for dealing with
Brazilian fixed income titles. It provides functionalities to build,
analyze, visualize, and valuate various types of fixed income
instruments and portfolios made thereof.
</p>
<div class="action">
<a href="https://github.com/thegitofdaniel/interesting" target="_blank">
Github
</a>
<a href="https://pypi.org/project/interesting" target="_blank">PyPi</a>
</div>
</div>
<div class="project">
<div class="thumbnail">
<img src="./assets/images/retirement-in-italy.png" alt="" />
</div>
<h2>Streamlit App with Fiscal Benefit Map</h2>
<p>
Streamlit is a very power data visualization tool, that expedites
building apps with minimal infrastructure requirements. In this project,
I use Streamlit to graphically identify which Italian municipalities
offer fiscal benefits for incoming retirees. This project leverages
knowledge of Technology, Data, Fiscal Optimization, and Italy.
</p>
<div class="action">
<a
href="https://github.com/thegitofdaniel/retirement_in_italy"
target="_blank"
>
Github
</a>
<a
href="https://thegitofdaniel.github.io/retirement_in_italy"
target="_blank"
>
Web Deployment
</a>
<a href="https://retirementinitaly.streamlit.app/" target="_blank">
Streamlit Deployment
</a>
</div>
</div>
<div class="project">
<div class="thumbnail">
<img src="./assets/images/thewebsiteofdaniel.png" alt="" />
</div>
<h2>My Website</h2>
<p>
Yes, this website is available on my GitHub. It has been built from
open-sourced templates. You may copy it too, as long as you keep the
license.
</p>
<div class="action">
<a
href="https://github.com/thegitofdaniel/thewebsiteofdaniel"
target="_blank"
>
Github
</a>
</div>
</div>
</div>
</div>
</section>
<section class="contact" id="contact">
<div class="overlay">
<div class="container">
<h1>Let's Talk</h1>
<p>I will get back to you as soon as possible.</p>
<form action="https://formspree.io/f/xoqgwwlw" method="POST">
<input type="text" name="Name" placeholder="Name" required="" />
<input type="email" name="Email" placeholder="Email" required="" />
<textarea name="Message" placeholder="Message" required=""></textarea>
<input type="submit" value="Submit" class="btn btn-primary" />
</form>
</div>
</div>
</section>
<footer>
<div class="container">
<a href="#">
<h3>Daniel Ruiz</h3>
</a>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact">Let's Talk</a></li>
</ul>
<div class="socials">
<a
href="https://www.linkedin.com/in/econometrics/"
target="_blank"
title="Visit my LinkedIn profile"
>
<i class="uil uil-linkedin"></i>
</a>
<a
href="https://github.com/thegitofdaniel"
target="_blank"
title="Visit my GitHub profile"
>
<i class="uil uil-github"></i>
</a>
<a
href="https://medium.com/@theblogofdaniel"
target="_blank"
title="Visit my Medium profile"
>
<i class="uil uil-medium-m"></i>
</a>
</div>
</div>
<div class="copyright">Copyright © Daniel Ruiz</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/swiper@9/swiper-bundle.min.js"></script>
<script src="./scripts/main.js"></script>
</body>
</html>