-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
100 lines (92 loc) · 2.79 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
site_name: flexcv
site_url: https://radlfabs.github.io/flexcv/
site_author: Fabian Rosenthal
site_description: >-
Customize your cross validation runs with ease.
copyright: Copyright © 2023 Fabian Rosenthal
theme:
name: material
logo: images/icon_c.png
features:
- navigation.tabs
- navigation.top
- navigation.sections
- navigation.expand
- navigation.tracking
- toc.follow
- content.code.copy
palette:
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
plugins:
# do not search in source code
- search:
separator: '[\s\u200b\-_,:!=\[\]()"`/]+|\.(?!\d)|&[lg]t;|(?!\b)(?=[A-Z][a-z])'
exclude: [flexcv]
- mkdocstrings:
handlers:
python:
paths: [.]
options:
# show_root_toc_entry: true
show_root_heading: true
show_root_members_full_path: true
show_root_full_path: true
returns_named_value: false
docstring_style: google
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- md_in_html
nav:
- Home: index.md
- Getting Started:
- Installation: start/getting-started.md
- Tutorial: start/tutorial.md
- User Guide:
- user-guide.md
- Nested CV Flow: guides/flow.md
- Neptune Integration: guides/neptune-integration.md
- Fit a Random Forest: guides/rf-regressor.md
- Model Random Effects: guides/random-effects.md
- Repeated Cross Validation: guides/repeated-guide.md
- Fit Mutiple Models: guides/multiple-models.md
- Reference:
- reference/reference.md
- Interface: reference/interface.md
- Handling Results: reference/results-handling.md
- Model Mapping: reference/model-mapping.md
- Split Methods: reference/split.md
- Repeated Runs: reference/repeated-ref.md
- Model Selection: reference/model-selection.md
- Metrics: reference/metrics.md
- Core Function: reference/core.md
- Models: reference/models.md
- Model Postprocessing: reference/postprocessing.md
- Logging: reference/log.md
- Plotting: reference/plotting.md
- Utilities: reference/utilities.md
- Data Synthesis: reference/synthesis.md
- YAML Parser: reference/yaml.md
- About: about.md