-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmkdocs.yml
81 lines (73 loc) · 1.97 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
site_name: GROOT
site_author: Daniël Vos
site_description: >-
Fit robust decision trees in a matter of seconds.
site_url: "https://groot.cyber-analytics.nl"
repo_url: "https://github.com/tudelft-cda-lab/GROOT"
repo_name: "tudelft-cda-lab/GROOT"
edit_uri: ""
copyright: Copyright © 2021 Daniël Vos
theme:
name: "material"
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: green
accent: deep orange
toggle:
icon: material/weather-night
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: deep orange
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- navigation.sections
plugins:
- search
- mkdocstrings:
handlers:
python:
setup_commands:
- import sys
- from unittest.mock import MagicMock as mock
- sys.modules["gurobipy"] = mock()
- sys.path.append("docs")
selection:
new_path_syntax: yes
docstring_style: "numpy"
rendering:
show_root_heading: yes
show_source: no
watch:
- groot
markdown_extensions:
- attr_list
- footnotes
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
- pymdownx.highlight
- pymdownx.superfences
extra_css:
- "stylesheets/extra.css"
nav:
- Home: index.md
- Getting started: getting_started.md
- Code Reference:
- Models:
- GROOT tree: reference/models/groot_tree.md
- GROOT forest: reference/models/groot_forest.md
- TREANT: reference/models/treant.md
- Provably robust boosting: reference/models/boosting.md
- Toolbox: reference/toolbox.md
- Adversaries: reference/adversary.md
- Robustness verification: reference/verification.md
- Datasets: reference/datasets.md
- Visualization: reference/visualization.md
- Utilities: reference/util.md
- License: license.md