-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmkdocs.yml
65 lines (62 loc) · 1.84 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
site_name: AI Engineer Guide
theme:
name: 'material'
palette:
# primary: 'purple'
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: purple
accent: purple
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:
- Introduction: index.md
- Virtual Environment: virtual_env.md
- Code Standards: code-standards.md
- GIT: git.md
- DVC: dvc.md
- Model Version Control: mlflow.md
- Using GPU: gpu.md
- Security: security.md
- Optimization:
- Model: opt-model.md
- Data: opt-data.md
- Concurrency & Parallelism: opt-para-concurr.md
- Spark: opt-spark.md
- Logging: logging.md
- Deployment:
- Flask: deploy-flask.md
- FastAPI: deploy-fastapi.md
- TF Serving: deploy-tf-serving.md
- Serverless: deploy-serverless.md
- Terraform: deploy-terraform.md
- Docker: docker.md
- Testing:
- Overview & Pytest: testing-pytest.md
- Schema Testing: testing-schema.md
- ML Testing: testing-ml.md
- API Testing: testing-api.md
- Profiling: testing-profiling.md
- CI/CD: cicd.md
# - MLOps: mlops.md
- Demo Site: demo.md
# - Monitoring: monitoring.md
repo_name: mapattacker/ai-engineer
repo_url: https://github.com/mapattacker/ai-engineer
markdown_extensions:
- admonition
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg