-
Notifications
You must be signed in to change notification settings - Fork 32
/
mkdocs.yml
83 lines (77 loc) · 2.63 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
site_name: MLCube
site_description: Documentation site for MLCube
site_author: <mlcommons.org> [email protected]
docs_dir: docs/
repo_url: https://github.com/mlcommons/mlcube
repo_name: mlcommons/mlcube
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/index.md
- Hello World: getting-started/hello-world.md
- MNIST: getting-started/mnist.md
- MLCube concepts: getting-started/concepts.md
- MLCube configuration: getting-started/mlcube-configuration.md
- System Settings: getting-started/system-settings.md
- Command Line Interface: getting-started/cli.md
- Tutorials:
- How to Create an MLCube: tutorials/create-mlcube.md
- Runners:
- Runners: runners/index.md
- Docker Runner: runners/docker-runner.md
- Singularity Runner: runners/singularity-runner.md
- SSH Runner: runners/ssh-runner.md
- Kubernetes Runner: runners/kubernetes.md
- Kubeflow Runner: runners/kubeflow.md
- GCP Runner: runners/gcp-runner.md
- Minified Benchmarks:
- Introduction: minified-benchmarks/introduction.md
- LLama 2: minified-benchmarks/llama2.md
- Stable Diffusion: minified-benchmarks/stable-diffusion.md
- 3D Unet: minified-benchmarks/3d-unet.md
- ResNet: minified-benchmarks/resnet.md
- Bert: minified-benchmarks/bert.md
- Object Detection: minified-benchmarks/object-detection.md
- Graph Neural Network: minified-benchmarks/gnn.md
theme:
features:
- search.suggest
- search.highlight
- search.share
name: material
logo: assets/logo.png
favicon: assets/favicon.ico
language: 'en'
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
toggle:
icon: material/toggle-switch
name: Switch to light mode
plugins:
- search
markdown_extensions:
- admonition
- codehilite
- pymdownx.tasklist
- pymdownx.details # Allowing hidden expandable regions denoted by ???
- pymdownx.superfences # Seems to enable syntax highlighting when used with the Material theme.
- pymdownx.tabbed:
alternate_style: true
- attr_list
- mkdocs-click # Generate documentation for `click`-based console applications.
- toc:
permalink: True
- md_in_html # Parse markdown inside HTML tags (default is not to parse).
extra:
social:
# Buttons at the bottom of every page.
- icon: fontawesome/brands/github
link: https://github.com/mlcommons/mlcube