-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
139 lines (130 loc) · 5.85 KB
/
mkdocs.yml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
site_name: APEBench
site_description: A Benchmark for Autoregressive PDE Emulators in JAX.
site_author: Felix Koehler
site_url: https://fkoehler.site/apebench
repo_url: https://github.com/Ceyron/apebench
repo_name: Ceyron/apebench
edit_uri: "" # No edit button, as some of our pages are in /docs and some in /examples via symlink, so it's impossible for them all to be accurate
theme:
name: material
features:
- navigation.sections # Sections are included in the navigation on the left.
- toc.integrate # Table of contents is integrated on the left; does not appear separately on the right.
- header.autohide # header disappears as you scroll
palette:
- scheme: default
primary: indigo
accent: amber
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: indigo
accent: amber
toggle:
icon: material/weather-sunny
name: Switch to light mode
icon:
repo: fontawesome/brands/github # GitHub logo in top right
logo: imgs/apebench_favicon.png
favicon: "imgs/apebench_favicon.png"
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/felix_m_koehler
- icon: fontawesome/brands/github
link: https://github.com/ceyron
- icon: fontawesome/brands/youtube
link: https://youtube.com/@MachineLearningSimulation
strict: true # Don't allow warnings during the build process
markdown_extensions:
- pymdownx.arithmatex: # Render LaTeX via MathJax
generic: true
- pymdownx.superfences # Seems to enable syntax highlighting when used with the Material theme.
- pymdownx.details # Allowing hidden expandable regions denoted by ???
- pymdownx.snippets: # Include one Markdown file into another
base_path: docs
- admonition
- toc:
permalink: "¤" # Adds a clickable permalink to each section heading
toc_depth: 4
- pymdownx.arithmatex:
generic: true
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
plugins:
- search # default search plugin; needs manually re-enabling when using any other plugins
- autorefs # Cross-links to headings
- mknotebooks # Jupyter notebooks
- mkdocstrings:
handlers:
python:
options:
inherited_members: true # Allow looking up inherited methods
show_root_heading: true # actually display anything at all...
show_root_full_path: true # display "diffrax.asdf" not just "asdf"
show_if_no_docstring: true
show_signature_annotations: true
separate_signature: true
show_source: true # don't include source code
members_order: source # order methods according to their order of definition in the source code, not alphabetical order
heading_level: 4
show_symbol_type_heading: true
docstring_style: null
nav:
- 'index.md'
- 'typical_workflow.md'
- 'use_cases.md'
- 'extending_apebench.md'
- 'using_cli.md'
- Examples:
- Introductory:
- Simple Advection 1D Emulation: 'examples/simple_advection_1d_learning.ipynb'
- Scrape Datasets: 'examples/scrape_datasets.ipynb'
- Animate Learning 1D Burgers: 'examples/animate_emulator_learning_burgers.ipynb'
- Extending Components: 'examples/component_extensions.ipynb'
- Advanced:
- Benchmark Flax nnx models: 'examples/benchmark_flax_models_with_nnx.ipynb'
- Benchmark Flax linen models: 'examples/benchmark_flax_models_with_linen.ipynb'
- Benchmark PyTorch models: 'examples/benchmark_pytorch_models.ipynb'
- Randomness & Reproducibility: 'examples/sources_of_randomness_and_reproducibility.ipynb'
- Difficulty & Receptive Field in 1D Advection: 'examples/difficulty_and_receptive_field_advection_1d.ipynb'
- Scenarios:
- Overview: 'api/scenarios/overview.md'
- Base Scenario: 'api/scenarios/base.md'
- Difficulty:
- Linear: 'api/scenarios/difficulty/linear.md'
- Nonlinear: 'api/scenarios/difficulty/nonlinear.md'
- Reaction-Diffusion: 'api/scenarios/difficulty/react.md'
- Generic: 'api/scenarios/difficulty/generic.md'
- Physical:
- Linear: 'api/scenarios/physical/linear.md'
- Nonlinear: 'api/scenarios/physical/nonlinear.md'
- Reaction-Diffusion: 'api/scenarios/physical/react.md'
- Navier-Stokes: 'api/scenarios/physical/navier_stokes.md'
- Linear (Special): 'api/scenarios/physical/linear_special.md'
- Generic: 'api/scenarios/physical/generic.md'
- Poisson: 'api/scenarios/physical/poisson.md'
- Normalized:
- Linear: 'api/scenarios/normalized/linear.md'
- Nonlinear: 'api/scenarios/normalized/nonlinear.md'
- Reaction-Diffusion: 'api/scenarios/normalized/react.md'
- Generic: 'api/scenarios/normalized/generic.md'
- API:
- Run:
- One Experiment: 'api/run/one_experiment.md'
- Study: 'api/run/study.md'
- Postprocess:
- High Level: 'api/postprocess/high_level.md'
- Low Level: 'api/postprocess/low_level.md'
- Dataframe Manipulation: 'api/postprocess/dataframe_manipulation.md'
- Scrape:
- Utilities: 'api/scrape/utilities.md'
- Curations: 'api/scrape/curations.md'
- 'api/utils.md'
- Misc:
- FAQ: 'misc/faq.md'
- Tips & Tricks: 'misc/tips.md'
- Gotchas: 'misc/gotchas.md'