-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
221 lines (221 loc) · 9.66 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
repo_url: https://github.com/swiss-ai-center/documentation
repo_name: swiss-ai-center/documentation
site_name: Swiss AI Center
site_author: Swiss AI Center contributors
site_url: https://docs.swiss-ai-center.ch
site_description: >-
Documentation website for the Swiss AI Center project.
copyright: Copyright © 2022 - 2024 Swiss AI Center
nav:
- Home:
- index.md
- Tutorials: tutorials/index.md
- How-to guides: how-to-guides/index.md
- Reference: reference/index.md
- Explanations: explanations/index.md
- Tutorials:
- tutorials/index.md
- Getting started: tutorials/getting-started.md
- Start the core engine: tutorials/start-the-core-engine.md
- Create a service to rotate an image (generic template): tutorials/create-a-service-to-rotate-an-image.md
- Create a service to summarize a text using an existing model (generic template): tutorials/create-a-service-to-summarize-a-text-using-an-existing-model.md
- Create a service to detect anomalies using a model built from scratch (model from scratch template): tutorials/create-a-service-to-detect-anomalies-using-a-model-built-from-scratch.md
- Create a pipeline that blurs faces in an image: tutorials/create-a-pipeline-that-blurs-faces-in-an-image.md
- How-to guides:
- how-to-guides/index.md
- How to create a new service: how-to-guides/how-to-create-a-new-service.md
- How to build, publish and deploy a service: how-to-guides/how-to-build-publish-and-deploy-a-service.md
- How to update the documentation: how-to-guides/how-to-update-the-documentation.md
- How to configure a new GitHub repository: how-to-guides/how-to-configure-a-new-github-repository.md
- How to add DVC to a service: how-to-guides/how-to-add-dvc-to-a-service.md
- How to deploy the Core engine on an Exoscale Kuburnetes cluster: how-to-guides/how-to-deploy-the-core-engine-on-an-exoscale-kubernetes-cluster.md
- Reference:
- reference/index.md
- Core concepts:
- Authentication: reference/core-concepts/auth.md
- Pipeline: reference/core-concepts/pipeline.md
- Service: reference/core-concepts/service.md
- Services:
- ae-ano-detection service: reference/services/ae-ano-detection.md
- average-shade service: reference/services/average-shade.md
- class-rebalancing service: reference/services/class-rebalancing.md
- classification-benchmark service: reference/services/classification-benchmark.md
- digit-recognition service: reference/services/digit-recognition.md
- doc-orientation-detector service: reference/services/doc-orientation-detector.md
- document-vectorizer service: reference/services/document-vectorizer.md
- doodle service: reference/services/doodle.md
- face-analyzer service: reference/services/face-analyzer.md
- face-detection service: reference/services/face-detection.md
- gradcam service: reference/services/gradcam.md
- hugging-face-image-to-text service: reference/services/hugging-face-image-to-text.md
- hugging-face-text-to-audio service: reference/services/hugging-face-text-to-audio.md
- hugging-face-text-to-image service: reference/services/hugging-face-text-to-image.md
- hugging-face-text-to-text service: reference/services/hugging-face-text-to-text.md
- hugging-face service: reference/services/hugging-face.md
- image-analyzer service: reference/services/image-analyzer.md
- image-blur service: reference/services/image-blur.md
- image-convert service: reference/services/image-convert.md
- image-crop service: reference/services/image-crop.md
- image-draw-bounding-boxes service: reference/services/image-draw-bounding-boxes.md
- image-greyscale service: reference/services/image-greyscale.md
- image-nsfw-detector service: reference/services/image-nsfw-detector.md
- image-resize service: reference/services/image-resize.md
- image-rotate service: reference/services/image-rotate.md
- image-sam service: reference/services/image-sam.md
- integrity-checker service: reference/services/integrity-checker.md
- nlp-langid service: reference/services/nlp-langid.md
- pdf-extractor service: reference/services/pdf-extractor.md
- planet-recognition service: reference/services/planet-recognition.md
- regression-benchmark service: reference/services/regression-benchmark.md
- summarization service: reference/services/summarization.md
- text-recognition-ocr service: reference/services/text-recognition-ocr.md
- text-summarizer service: reference/services/text-summarizer.md
- time series anomaly detection service: reference/services/ts-anomaly-detection.md
- urban-sound-classifier service: reference/services/urban-sound-classifier.md
- ydata-profiling service: reference/services/ydata-profiling.md
- yolov8 service: reference/services/yolov8.md
- zigzag-binarization service: reference/services/zigzag-binarization.md
- Common code: reference/common-code.md
- Core engine: reference/core-engine.md
- mdwrap: reference/mdwrap.md
- chatbot-ollama: reference/chatbot-ollama.md
- Team: reference/team.md
- Explanations:
- explanations/index.md
- About this documentation: explanations/about-this-documentation.md
- About Docker and Docker Compose: explanations/about-docker-and-docker-compose.md
- About Domain-Driven design (DDD): explanations/about-domain-driven-design.md
- About dotenv support: explanations/about-dotenv-support.md
- About DVC: explanations/about-dvc.md
- About envsubst: explanations/about-envsubst.md
- About Exoscale: explanations/about-exoscale.md
- About FastAPI: explanations/about-fastapi.md
- About flake8: explanations/about-flake8.md
- About GitHub: explanations/about-github.md
- About GitHub Actions: explanations/about-github-actions.md
- About GitHub Secrets: explanations/about-github-secrets.md
- About GlitchTip: explanations/about-glitchtip.md
- About HEIA-FR: explanations/about-heia-fr.md
- About kubectl: explanations/about-kubectl.md
- About Kubernetes: explanations/about-kubernetes.md
- About Material for MkDocs: explanations/about-material-for-mkdocs.md
- About minikube: explanations/about-minikube.md
- About MinIO: explanations/about-minio.md
- About PostgreSQL: explanations/about-postgresql.md
- About Pydantic: explanations/about-pydantic.md
- About pytest: explanations/about-pytest.md
- About Python: explanations/about-python.md
- About Python pitfalls: explanations/about-python-pitfalls.md
- About SQLAlchemy: explanations/about-sqlalchemy.md
- About SQLModel: explanations/about-sqlmodel.md
- About SQLite: explanations/about-sqlite.md
- About yq: explanations/about-yq.md
edit_uri: blob/main/docs/
theme:
language: en
custom_dir: docs
logo: assets/images/logo.png
favicon: assets/images/logo.png
icon:
repo: fontawesome/brands/git-alt
name: material
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: blue
accent: blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.annotate
- content.code.copy
- content.action.edit
- content.action.view
- content.tabs.link
- navigation.indexes
- navigation.instant
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.footer
- search.suggest
- search.highlight
- toc.follow
plugins:
- search
- social
- tags
- git-revision-date-localized:
enabled: !ENV [CI, false]
type: datetime
fallback_to_build_date: true
- glightbox
- minify:
minify_html: true
extra:
social:
- icon: material/earth
link: https://swiss-ai-center.ch
name: Swiss AI Center
- icon: material/github
link: https://github.com/swiss-ai-center/
name: Swiss AI Center on GitHub
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem
- pymdownx.critic
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.snippets:
check_paths: true
base_path: ["docs"]
auto_append:
- glossary.md
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- tables
- toc:
permalink: true
extra_css:
- stylesheets/extra.css
extra_javascript:
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://unpkg.com/[email protected]/dist/tablesort.min.js
- javascripts/mathjax.js
- javascripts/tablesort.js