-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
89 lines (79 loc) · 2.07 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
site_name: PyLaia
site_dir: public
theme:
name: material
font:
text: Roboto
code: Roboto Mono
features:
- navigation.top
- navigation.tracking
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- content.code.copy
palette:
# 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 light mode
plugins:
- search
- autorefs
- literate-nav:
nav_file: SUMMARY.md
- mkdocstrings:
handlers:
python:
options:
show_root_toc_entry: false
show_object_full_path: false
show_root_heading: yes
show_source: true
docstring_style: google
merge_init_into_class: yes
show_category_heading: yes
show_signature_annotations: yes
separate_signature: yes
members_order: source
unwrap_annotated: yes
show_if_no_docstring: yes
filters:
- "!^_"
- "!^__"
nav:
- Home: index.md
- Original paper: original_paper.md
- Get started:
- get_started/index.md
- Development: get_started/development.md
- Usage:
- usage/index.md
- Dataset:
- usage/datasets/index.md
- Dataset formatting: usage/datasets/format.md
- Model initialization: usage/initialization/index.md
- Training: usage/training/index.md
- Prediction: usage/prediction/index.md
- Netout: usage/netout/index.md
- Explicit language modeling: usage/language_models/index.md
# defer to literate-nav
- Code Reference: reference/
- Releases: releases.md
copyright: Copyright © Teklia
extra:
social:
- icon: fontawesome/brands/gitlab
name: Git repository for this project
link: https://gitlab.teklia.com/atr/pylaia
markdown_extensions:
- pymdownx.superfences
- admonition