-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from mackelab/manuel_changes
Nicer docs, Will try to host it on Github Pages
- Loading branch information
Showing
4 changed files
with
32 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,5 @@ | ||
# Welcome to MkDocs | ||
# A Practical Guide to Statistical Distances for Evaluating Generative Models in Science | ||
|
||
For full documentation visit [mkdocs.org](https://www.mkdocs.org). | ||
Generative models are highly useful in many disciplines of science. How do we evaluate them? As the data generated by these models is often high-dimensional and/or non-parametric, we can typically not resort to classical statistical tests. This paper aims to provide an accessible entry point to a understanding popular statistical distances proposed and adopted by the machine learning in science community, requiring only foundational knowledge in mathematics or statistics. We focus on four commonly used classes of statistical distances: obtaining a distance using classifiers (e.g. classifier two-sample tests), using embeddings through kernels (e.g. Maximum Mean Discrepancy) or neural networks (e.g. Frechet Inception Distance), and slicing (e.g. sliced Wasserstein). We highlight their merits, scalability, complexity and pitfalls, which are all illustrated in accompanying notebooks. We then apply each metric to multiple examples generative models in scientific applications, spanning image generation, neuroscience... . We this aim to empower researchers to use, critically assess and interpret statistical distances for generative models in science. | ||
|
||
## Commands | ||
|
||
* `mkdocs new [dir-name]` - Create a new project. | ||
* `mkdocs serve` - Start the live-reloading docs server. | ||
* `mkdocs build` - Build the documentation site. | ||
* `mkdocs -h` - Print help message and exit. | ||
|
||
## Project layout | ||
|
||
mkdocs.yml # The configuration file. | ||
docs/ | ||
index.md # The documentation homepage. | ||
... # Other markdown pages, images and other files. | ||
{% include "../README.md" %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,35 @@ | ||
site_name: Distribution Metrics for Evaluating Generative Models in Science | ||
site_name: Mackathon | ||
|
||
nav: | ||
- Home: index.md | ||
- Example notebook: notebooks/example.ipynb | ||
- FID notebook: notebooks/fid.ipynb | ||
- API Reference: api.md | ||
- API: api.md | ||
- Notebook: | ||
- Example Notebook: notebooks/example.ipynb | ||
- FID notebook: notebooks/fid.ipynb | ||
|
||
|
||
theme: | ||
name: material | ||
palette: | ||
primary: 'indigo' | ||
accent: 'indigo' | ||
collapse_navigation: False | ||
|
||
plugins: | ||
- search | ||
- mkdocs-jupyter | ||
- include-markdown | ||
- mkdocstrings: | ||
watch: | ||
- labproject | ||
handlers: | ||
python: | ||
rendering: | ||
show_source: true | ||
show_source: true | ||
|
||
markdown_extensions: | ||
- mdx_math: | ||
enable_dollar_delimiter: True | ||
|
||
extra_javascript: | ||
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-AMS-MML_HTMLorMML |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters