-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoftware.html
More file actions
73 lines (71 loc) · 4.18 KB
/
software.html
File metadata and controls
73 lines (71 loc) · 4.18 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
<!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>Software — Azadeh Khaleghi</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>
<section id="software" class="card">
<div class="section-title"><h2>Software & Code</h2></div>
<div class="section-content">
<ul>
<li><b>A. Khaleghi</b>, <a href = "https://lukaszierahn.github.io">L. Zierahn</a>, <a href="https://cran.r-project.org/web/packages/RChest/index.html"><i>RChest</i></a> and <a href="https://pypi.org/project/PyChest/"><i>PyChest</i></a>: An <b>R</b> package available on CRAN, (respectively a <b>Python</b> Package available on PyPi) for locating distributional changes in piece-wise stationary timeseries with long-range dependencies, (2021).
<ul>
<li><i>Corresponding Paper: <b>A. Khaleghi</b>, L. Zierahn, <a href="https://arxiv.org/abs/2112.10565">PyChEst: a Python package for the consistent retrospective estimation of distributional changes in piece-wise stationary time series</a>, arXiv:2112.10565.</i></li>
<li><i>The <a href="https://github.com/azalk/GoChest">Github repository</a> contains a <b>Go</b> implementation which is also interfaced with <b>Python</b>.</i></li>
</ul>
</li>
<li><p><a href="https://github.com/azalk/Oblivious">Github repository</a> for the implementation of our Algorithmically Fair Classification and Regression methods proposed in <a href="https://arxiv.org/abs/2002.02901">this paper</a>.</p></li>
</ul>
</div>
</section>
</main>
<footer>© Azadeh Khaleghi — 2025</footer>
</div>
</body>
</html>