-
Notifications
You must be signed in to change notification settings - Fork 37
/
mkdocs.yml
85 lines (76 loc) · 2.24 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
site_name: MLOps Guide
site_url: https://mlops-guide.github.io/
site_author: Arthur Olga, Gabriel Monteiro, Guilherme Leite, Vinicius Lima
site_description: >-
MLOps Guide introducing concepts and application using DVC, CML, IBM Watson Machine Learning, IBM Watson OpenScale, Terraform and Cookiecutter. Learn how to implement MLOps.
repo_name: mlops-guide
repo_url: https://github.com/mlops-guide/mlops-guide.github.io
edit_uri: "tree/main/docs"
theme:
name: material
favicon: assets/favicon.png
logo: assets/logo-white.png
features:
- navigation.extend
palette:
# Light mode
- scheme: default
media: "(prefers-color-scheme: light)"
primary: light blue
accent: orange
toggle:
icon: octicons/moon-16
name: Switch to dark mode
# Dark mode
- scheme: slate
media: "(prefers-color-scheme: dark)"
primary: light blue
accent: orange
toggle:
icon: octicons/sun-16
name: Switch to light mode
icon:
repo: fontawesome/brands/github-alt
markdown_extensions:
- admonition
- attr_list
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.snippets
- footnotes
nav:
- Home: 'index.md'
- Contents: 'glossary.md'
- Principles of MLOps:
- 'MLOps/Data/index.md'
- 'MLOps/PipelineAutomation/index.md'
- 'MLOps/FeatureStore/index.md'
- 'MLOps/CICDML/index.md'
- 'MLOps/Monitoring/index.md'
- Implementation Guide:
- Introduction:
- 'Structure/project_structure.md'
- 'Structure/starting.md'
- Environment:
- 'Infraestrutura/Auth/index.md'
- 'Infraestrutura/Terraform/index.md'
- 'Infraestrutura/Python/index.md'
- Versioning:
- 'Versionamento/index.md'
- 'Versionamento/basic_dvc.md'
- 'Versionamento/pipelines_dvc.md'
- 'Deployment/index.md'
- CI/CD for Machine Learning:
- 'CICD/tests.md'
- 'CICD/cml_testing.md'
- 'CICD/cml_deploy.md'
- 'Openscale/index.md'
- Project Workflow: 'Workflow/index.md'
extra_css:
- ASCII_cinema/asciinema-player.css
- _css/extra_css.css
extra_javascript:
- ASCII_cinema/asciinema-player.js
- _js/extra_js.js