-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·75 lines (73 loc) · 4.35 KB
/
index.html
File metadata and controls
executable file
·75 lines (73 loc) · 4.35 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
<!doctype html>
<html lang="en">
<head>
<!-- Statcounter code kept exactly as is -->
<script type="text/javascript">
var sc_project=12787850;
var sc_invisible=1;
var sc_security="0d3a0671";
</script>
<script type="text/javascript" src="https://www.statcounter.com/counter/counter.js" async></script>
<noscript><div class="statcounter"><a title="Web Analytics Made Easy - Statcounter" href="https://statcounter.com/" target="_blank"><img class="statcounter" src="https://c.statcounter.com/12787850/0/0d3a0671/1/" alt="Web Analytics Made Easy - Statcounter" referrerPolicy="no-referrer-when-downgrade"></a></div></noscript>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Azadeh Khaleghi - Professor of Statistics</title>
<style>
:root{--bg:#ffffff;--text:#0b1220;--muted:#556076;--accent:#0066cc;--card:#f7f9fc;--max-width:1100px;--radius:12px;}
*{box-sizing:border-box;}
body{margin:0;padding:28px;display:flex;justify-content:center;font-family:optima,verdana,sans-serif;background:var(--bg);color:var(--text);}
.container{width:100%;max-width:var(--max-width);}
header{display:flex;flex-direction:column;align-items:center;gap:16px;}
.photo{width:160px;height:160px;border-radius:50%;overflow:hidden;box-shadow:0 6px 18px rgba(10,20,40,0.08);}
.photo img{width:100%;height:100%;object-fit:cover;}
nav{margin-top:12px;display:flex;flex-wrap:wrap;gap:12px;justify-content:center;}
.btn{padding:10px 16px;border-radius:10px;background:var(--accent);color:#fff;font-weight:600;}
main{margin-top:28px;display:grid;gap:28px;}
.card{background:var(--card);padding:20px;border-radius:var(--radius);box-shadow:0 6px 18px rgba(12,20,40,0.04);}
ul{padding:0;list-style:none;}
li{margin-bottom:10px;}
footer{margin-top:32px;text-align:center;color:var(--muted);}
</style>
</head>
<body>
<div class="container">
<header>
<div class="photo">
<img src="shapeimage_2.png" alt="Portrait of Azadeh Khaleghi">
</div>
<h1>Azadeh Khaleghi</h1>
<p>Professor of Statistics (HDR equiv.) —
<a href="https://www.ensae.fr">ENSAE</a> -
<a href="https://crest.science">CREST</a>, IP Paris
</p>
<p class="lead">Research Interests: statistical learning theory, information theory, nonparametric statistics, long-memory processes</p>
<nav>
<a class="btn" href="index.html">About</a>
<a class="btn" href="publications.html">Research</a>
<a class="btn" href="teaching.html">Teaching</a>
<a class="btn" href="software.html">Software</a>
<a class="btn" href="CV.pdf" target="_blank">Curriculum Vitae</a>
</nav>
</header>
<main>
<!-- About -->
<section class="card">
<h2>About</h2>
<p>Azadeh Khaleghi is a Professor of Statistics at <a href="https://www.ensae.fr">ENSAE</a> - <a href="https://crest.science">CREST</a>.
She earned her Ph.D. in Mathematics from Université de Lille I - INRIA Lille (France) and holds an M.Sc. and B.Sc. in Electrical and Computer Engineering from the University of Toronto. Her research focuses on the mathematical foundations of statistics and machine learning, emphasizing long-memory and mixing processes. She develops nonparametric methods for estimating mixing coefficients, modelling complex dependencies in time series, and designing statistical learning and sequential decision-making algorithms robust to long-range dependencies and non-stationarities. Her techniques for understanding dependence in stochastic processes also inform broader areas of statistical learning, including algorithmic fairness.</p>
<p class="small">ORCID: <a href="https://orcid.org/0000-0001-8643-5416">0000-0001-8643-5416</a> • <a href="https://scholar.google.co.uk/citations?user=VnTMs_EAAAAJ&hl=en">Google Scholar</a></p>
</section>
<!-- Contact -->
<section class="card">
<h2>Contact & Links</h2>
<div><strong>Email:</strong> <a href="mailto:azadeh.khaleghi@ensae.fr">azadeh.khaleghi@ensae.fr</a></div>
<div><strong>Address:</strong> ENSAE — 5 avenue Henry Le Chatelier, 91120 Palaiseau, France</div>
<div><a href="CV.pdf" target="_blank">Download CV (PDF)</a></div>
</section>
</main>
<footer>
© Azadeh Khaleghi — last updated: Sept 2025
</footer>
</div>
</body>
</html>