-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
71 lines (63 loc) · 1.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
site_name: black-it documentation
repo_name: 'bancaditalia/black-it'
repo_url: https://github.com/bancaditalia/black-it
nav:
- Home: index.md
- How it works: description.md
- Examples and tutorials:
- Overview: examples.md
- Toy model: tests_on_toy_model.ipynb
- Simple shock model: slack_stock_price_shock.ipynb
- SIR model: finding_the_parameters_of_a_SIR_model.ipynb
- Boltzmann wealth model: boltzmann_wealth_model.ipynb
- Different samplers: overview_of_the_different_samplers.ipynb
- Benchmarking samplers: benchmarking_samplers.ipynb
- Plotting tutorial: overview_of_plotting_functions.ipynb
- Interface with simulators: simulator_interface.md
- Checkpointing and parallelisation: checkpointing_parallelisation.md
- Extending Black-it: contributing.md
- Code Reference:
- Calibrator: calibrator.md
- Samplers: samplers.md
- Loss functions: losses.md
- Search space: search_space.md
- Citing Black-it: citing_black_it.md
plugins:
- mknotebooks
- search
- mkdocstrings:
default_handler: python
handlers:
python:
selection:
docstring_style: google
filters:
- "!^_" # exlude all members starting with _
- "^__init__$" # but always include __init__ modules and methods
watch:
- black_it
theme:
name: material
feature:
tabs: true
palette:
- scheme: default
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- scheme: slate
toggle:
icon: material/weather-night
name: Switch to light mode
logo: logo/monogram_512.png
strict: false
markdown_extensions:
- codehilite
- pymdownx.arithmatex
- pymdownx.superfences
- pymdownx.highlight
- admonition
- markdown_include.include:
base_path: docs
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'