-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
66 lines (61 loc) · 1.64 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
site_name: RUL Datasets
site_url: https://krokotsch.eu/rul-datasets
repo_name: tilman151/rul_datasets
repo_url: https://github.com/tilman151/rul-datasets
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: amber
accent: deep orange
toggle:
icon: material/weather-sunny
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: deep purple
accent: purple
toggle:
icon: material/weather-night
name: Switch to dark mode
features:
- content.code.annotate
nav:
- Introduction: index.md
- Use Cases:
- Libraries: use_cases/libraries.md
- Learning Tasks: use_cases/tasks.md
- Feature Extraction: use_cases/feature_extraction.md
- Dummy Dataset: dummy_for_debugging.ipynb
- API Reference: api/
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
watch: [rul_datasets]
plugins:
- search
- autorefs
- section-index
- mkdocs-jupyter:
no_input: False
- gen-files:
scripts: [docs/gen_ref_pages.py]
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
default_handler: python
handlers:
python:
import:
- https://pytorch-lightning.readthedocs.io/en/stable/objects.inv
- https://pytorch.org/docs/stable/objects.inv
- https://scikit-learn.org/stable/objects.inv
- https://numpy.org/doc/stable/objects.inv
options:
show_source: false