Skip to content

Commit 6ef1e3b

Browse files
authored
Merge pull request #10 from aidos-lab/es-dev
Fixing Toolbox Boxes
2 parents 3f7297c + 5d27a05 commit 6ef1e3b

File tree

11 files changed

+75
-53
lines changed

11 files changed

+75
-53
lines changed

content/people.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ starting a collaboration with us.
3535
{{< person "MA" >}}
3636
</div>
3737

38-
Your name is missing here! Learn more about [joining us]({{< relref "/contact/#join-us" >}}).
38+
Your name is missing here! Learn more about [joining us]({{< relref "/contact" >}}).
3939

4040
# Alumni & Alumnae
4141

content/theses.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: "Theses"
66

77
This list of theses, sorted in reverse chronological order, provides
88
just a brief glimpse into some of the research topics that we are
9-
interested in. Read on if you are interested in [joining us]({{< relref "/contact/#join-us" >}}).
9+
interested in. Read on if you are interested in [joining us]({{< relref "/contact" >}}).
1010

1111
# 2025
1212

data/people/MA.toml

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
name = "Mathieu Alain"
2-
job = "Collaborator"
32
image = "ma.jpg"
43
bio = """\
54
Mathieu seeks to extend machine learning to topological and

data/tools/TARDIS.toml

-15
This file was deleted.

data/tools/magnipy.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "magnipy"
2-
paper = "Metric Space Magnitude Computations"
2+
paper = "Metric Space Magnitude for Evaluating the Diversity of Latent Representations"
33
image = "magnipy.svg"
44
venue = "NeurIPS 2024"
55
description = """\

data/tools/presto.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "PRESTO"
22
paper = "Mapping the Multiverse of Latent Representations"
33
image = "presto.svg"
44
description = """\
5-
The world of machine learning research is riddled with small decisions, from data collection, cleaning, into model selection and parameter tuning 🎶. Each combination of data, implementation, and modeling decisions leads to a potential universe where we can analyze and interpret results. Together, these form a multiverse! 🌌 With PRESTO (Projected Embedding Similarity based on Topological Overlays), we offer topological tools to efficiently measure the structural variation between representations that arise from different choices in a machine learning workflow.
5+
The world of machine learning research is riddled with small decisions, from data collection, cleaning, into model selection and parameter tuning 🎶. Each choice leads to a potential universe where we can analyze and interpret results. PRESTO offers topological tools to efficiently measure the structural variation between representations that arise from different choices in a machine learning workflow.
66
"""
77
repo = "https://github.com/aidos-lab/Presto"
88
pub = "https://doi.org/10.48550/arXiv.2402.01514"

data/tools/scott.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "SCOTT"
22
paper = "Curvature Filtrations for Graph Generative Model Evaluation"
33
image = "scott.jpg"
44
description = """\
5-
SCOTT (Synthesizing Curvature Operations and Topological Tools) is a Python package for computing **curvature filtrations** for graphs and graph distributions. Our method introduces a novel way to compare graph distributions by combining discrete curvature on graphs with persistent homology, providing descriptors of graph sets that are: *robust*, *stable*, *expressive*, and *compatible with statistical testing*. The package is highly adaptable, offering several options for user customization, including different curvature computation methods and diverse metrics for comparing persistent homology outputs.
5+
SCOTT is a Python package for computing **curvature filtrations** for graphs and graph distributions. Our method introduces a novel way to compare graph distributions by combining discrete curvature on graphs with persistent homology, providing descriptors of graph sets that are: *robust*, *stable*, *expressive*, and *compatible with statistical testing*.
66
"""
77
repo = "https://github.com/aidos-lab/curvature-filtrations"
88
pub = "https://doi.org/10.48550/arXiv.2301.12906"

data/tools/tardis.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name = "TARDIS"
2+
paper = "Topological Algorithms for Robust DIscovery of Singularities"
3+
image = "TARDIS.svg"
4+
venue = "ICML 2023"
5+
description = """\
6+
The manifold hypothesis is a staple of modern machine learning research. However, real-world data exhibits
7+
distinct **non-manifold structures, i.e. singularities**, that can lead to erroneous findings.
8+
We provide a topological framework that quantifies the local intrinsic dimension, and yields a
9+
**Euclidicity score** for assessing the 'manifoldness' of a point along multiple scales.
10+
"""
11+
arXiv = "2210.00069"
12+
pub = "https://arxiv.org/abs/2210.00069"
13+
repo = "https://github.com/aidos-lab/TARDIS"

layouts/shortcodes/tool.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
<div class="card">
1+
<div class="card-tool">
22
{{ $tool := .Get 0 }}
33
{{ $tool := index .Site.Data.tools $tool }}
44

5-
<div class="card-left">
5+
<div class="tool-left">
66
<figure>
77
<img src="/tools/{{ $tool.image }}" width="180" alt="{{ $tool.name }}" />
88
</figure>
99
</div>
1010

11-
<div class="card-right">
11+
<div class="tool-right">
1212
<div class="tool-title-container">
1313
<div class="tool-title">{{ $tool.name }}</div>
1414
<div class="tool-icons">{{ partial "icons.html" (dict "paper" $tool.pub "repo" $tool.repo) }}</div>
1515
</div>
16-
<div class="card-bio">
16+
<span >
1717
{{ $tool.description | markdownify }}
18-
</div>
18+
</span>
1919
</div>
2020
</div>
21-
21+

static/tools/TARDIS.svg

+26-21
Loading

themes/brevis/static/css/style.css

+25-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)