-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
142 lines (133 loc) · 3.91 KB
/
mkdocs.yml
File metadata and controls
142 lines (133 loc) · 3.91 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
site_name: MLPotion - Machine Learning Potion
site_url: https://github.com/UnicoLab/MLPotion
docs_dir: docs
theme:
name: "material"
icon:
logo: material/atom
admonition:
note: octicons/tag-16
abstract: octicons/checklist-16
info: octicons/info-16
tip: octicons/squirrel-16
success: octicons/check-16
question: octicons/question-16
warning: octicons/alert-16
failure: octicons/x-circle-16
danger: octicons/zap-16
bug: octicons/bug-16
example: octicons/beaker-16
quote: octicons/quote-16
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: black
accent: black
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: teal
toggle:
icon: material/toggle-switch
name: Switch to light mode
nav:
- 🏠 Home: index.md
- 🚀 Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- Core Concepts: getting-started/concepts.md
- 🔧 Frameworks:
- TensorFlow: frameworks/tensorflow.md
- PyTorch: frameworks/pytorch.md
- Keras: frameworks/keras.md
- 🔄 Integrations:
- FlowyML:
- Overview: integrations/flowyml.md
- ZenML: integrations/zenml.md
- 🎓 Tutorials:
- Basic Pipeline: tutorials/basic-pipeline.md
- FlowyML Quick Start: tutorials/flowyml-quickstart.md
- FlowyML Custom Pipelines: tutorials/flowyml-custom-pipeline.md
- FlowyML Experiment Tracking: tutorials/flowyml-experiment-tracking.md
- FlowyML Scheduled Retraining: tutorials/flowyml-scheduled-retraining.md
- ZenML Pipeline: tutorials/zenml-integration.md
- Multi-Framework: tutorials/multi-framework.md
- 📖 API Reference:
- Core: api/core.md
- TensorFlow: api/frameworks/tensorflow.md
- PyTorch: api/frameworks/pytorch.md
- Keras: api/frameworks/keras.md
- FlowyML: api/integrations/flowyml.md
- ZenML: api/integrations/zenml.md
- 🤝 Contributing:
- Overview: contributing/overview.md
repo_name: ML-Potion
repo_url: https://github.com/UnicoLab/MLPotion
markdown_extensions:
- attr_list
- md_in_html
- admonition
- tables
- pymdownx.details
- pymdownx.highlight
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- autorefs:
link_titles: true
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
show_source: true
show_signature_annotations: true
separate_signature: true
docstring_style: google
merge_init_into_class: true
show_category_heading: true
- mike:
canonical_version: null
version_selector: true
css_dir: css
javascript_dir: js
# Copy files instead of creating symlinks (GitHub Pages doesn't follow symlinks)
alias_type: copy
- include-markdown:
encoding: ascii
preserve_includer_indent: false
dedent: false
trailing_newlines: true
comments: true
rewrite_relative_urls: true
heading_offset: 0
start: <!--start-->
end: <!--end-->
recursive: true
# Disable directory URLs to make relative paths work better
use_directory_urls: false
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github
link: https://github.com/UnicoLab/MLPotion
- icon: fontawesome/brands/python
link: https://pypi.org/project/mlpotion/
extra_javascript:
- assets/js/fix-image-paths.js