-
Notifications
You must be signed in to change notification settings - Fork 1
/
english.html
75 lines (66 loc) · 2.62 KB
/
english.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>English</title>
<link rel="stylesheet" href="css/estilo3.css">
</head>
<body>
<header>
<div class="container">
<div class="branding">
<h1>Leonardo Alvarado</h1>
<p>MSc. Computer Science</p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="proyectos.html">Proyectos</a></li>
<li class="current"><a href="english.html">English</a></li>
</ul>
</nav>
<img src="img/Leo.jpg" alt="Foto Personal" width="120">
</div>
</header>
<main>
<p>
<section>
<div class="container">
<h2> About me </h2>
I'm physicist with a master degree's in Computer Science.
I'm interested in Data Science, Machine Learning, Numerical Simulations, Seismology and
Science teaching.
</div>
</section>
<section>
<div class="container">
<h2> Experience</h2>
I have worked as researcher on seismology in analysis and processing
of time series data for earthquake localization and magnitude calculation.
Numerical modeling of seismic wave for microzoning purpose. Focal mechanism
determination using inverse theory. Deep Neural Learning for earthquake detection.
Clustering of response spectra using Machine Learning techniques.
I’m interested in Data Science, Machine Learning and numerical simulation.
</div>
</section>
<section>
<div class="proyecto">
<h2> Proyectos </h2>
<ul>
<li> <p>Clustering the response spectra using dimensionality reduction algorithm
(t-SNE) and K-means <a class="proyectos" href="https://github.com/joleonar/Clustering_Curves" target="_blank"> here</a> </p>
<li> <p>Automatic generation of <a class="proyectos" href="documents/reporte_mensual.pdf" target="_blank"> seismic reports</a>
using Latex, R and <a class="proyectos" href="https://forum.generic-mapping-tools.org/t/map-of-seismic-stations-using-pygmt/828" target="_blank"> GMT </a></p>
<li> <p>Earthquake detection usin Deep Neural Network</p>
</ul>
</div>
</section>
</main>
<footer>
<h3>Social networks</h3>
<span><a href="https://www.linkedin.com/in/leonardo-alvarado-85222a56/" target="_blank"><img src="img/linkedin_logo_64px.png" alt="twiter logo" width="40"></a></span>
<span><a href="https://github.com/joleonar" target="_blank"> <img src="img/github_icon_blue.png" alt="twiter logo" width="40"></a></span>
<span><a href="https://twitter.com/JOLEONAR" target="_blank"> <img src="img/twitter_logo64px.png" alt="twiter logo" width="40"></a></span>
</footer>
</body>
</html>