generated from alvarobartt/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmkdocs.yml
127 lines (125 loc) · 3.83 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
site_name: Fold
repo_url: https://github.com/dream-faster/fold
repo_name: GitHub
site_author: Dream Faster
copyright: Dream Faster 2023
theme:
name: material
logo: images/logo_white.svg
favicon: images/logo.svg
features:
- navigation.indexes
- search.suggest
- toc.follow
- navigation.top
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/toggle-switch
name: Switch to dark mode
primary: amber
accent: deep orange
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/toggle-switch-off-outline
name: Switch to light mode
primary: amber
accent: deep orange
nav:
- Home: 'index.md'
- Must know Concepts:
- Adaptive ML: 'concepts/adaptive-ml.md'
- Speed: 'concepts/speed.md'
- Design: 'concepts/design.md'
- Models: 'concepts/models.md'
- Forecasting horizon: 'concepts/forecasting-horizon.md'
- Splitters: 'concepts/splitters.md'
- Walkthroughs:
- Start Here (Core Walkthrough): 'walkthroughs/core_walkthrough.md'
- Benchmarking Sktime-Fold: 'walkthroughs/benchmarking_sktime_fold.md'
- Examples: generated/gallery
- API:
- 'api/index.md'
- Main Loops: 'api/loop.md'
- Models: 'api/models.md'
- Composites: 'api/composites.md'
- Transformations: 'api/transformations.md'
- Product, Licencing & Roadmap:
- Pricing: product/pricing.md
- License: product/license.md
- Roadmap: 'product/roadmap.md'
markdown_extensions:
- tables
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
plugins:
- search
- include-markdown
- glightbox:
touchNavigation: true
loop: true
zoomable: true
auto_caption: true
- autorefs
- gallery:
examples_dirs: docs/examples/ # path to your example scripts
gallery_dirs: docs/generated/gallery # where to save generated gallery
ignore_pattern: 'load_data.py'
binder:
org: dream-faster
repo: fold
dependencies: docs/examples/requirements.txt
notebooks_dir: docs/examples
- mkdocstrings:
handlers:
python:
paths: [src]
options:
show_source: false
separate_signature: true
show_submodules: true
show_signature_annotations: true
docstring_style: 'numpy'
show_root_toc_entry: false
group_by_category: true
# show_root_heading: true
show_category_heading: false
import:
- https://docs.python-requests.org/en/master/objects.inv
extra:
analytics:
provider: google
property: G-FBLB9N9026
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="..." target="_blank" rel="noopener">feedback form</a>.
consent:
title: Cookie consent
description: >-
We use cookies to recognize your repeated visits and preferences, as well
as to measure the effectiveness of our documentation and whether users
find what they're searching for. With your consent, you're helping us to
make our documentation better.