-
Notifications
You must be signed in to change notification settings - Fork 31
/
mkdocs.yml
134 lines (126 loc) · 3.75 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
site_name: MedPerf
site_url: https://medperf.com/
repo_url: https://github.com/mlcommons/medperf
repo_name: mlcommons/medperf
nav:
- What is Medperf?: what_is_medperf.md
- Benchmark Roles: roles.md
- Benchmark Workflow: workflow.md
- Components: medperf_components.md
- GETTING STARTED:
# - Roles: getting_started/overview.md
- Create an Account: getting_started/signup.md
- Installation: getting_started/installation.md
- Setup: getting_started/setup.md
- TUTORIAL:
- Introduction: getting_started/tutorials_overview.md
- Bechmark Committee: getting_started/benchmark_owner_demo.md
- Model Owners: getting_started/model_owner_demo.md
- Data Owners: getting_started/data_owner_demo.md
- ADVANCED CONCEPTS:
- MedPerf MLCubes:
- Introduction: mlcubes/mlcubes.md
- Creating Data Preparator MLCubes from Scratch: mlcubes/mlcube_data.md
- Creating Model MLCubes from Scratch: mlcubes/mlcube_models.md
- Creating Metrics MLCubes from Scratch: mlcubes/mlcube_metrics.md
- Creating Model MLCubes from GaNDLF: mlcubes/gandlf_mlcube.md
- Authentication: concepts/auth.md
# - Client Configuration: concepts/profiles.md
- MLCube Components: concepts/mlcube_files.md
- Hosting Files: concepts/hosting_files.md
# - Benchmark Associations: concepts/associations.md
# - Model Priority: concepts/priorities.md
# - Running Specific Models: concepts/single_run.md
#- CLI Reference: cli_reference.md
# - Code Reference: reference/
theme:
custom_dir: docs/overrides
features:
- search.suggest
- search.highlight
- search.share
- content.code.annotate
- content.code.copy
- navigation.sections
icon:
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
name: material
logo: assets/logo.png
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
- macros
- mkdocstrings:
watch:
- cli/medperf
# - server
handlers:
python:
paths: [cli/medperf]
- gen-files:
scripts:
- docs/gen_ref_pages.py
- literate-nav:
nav_file: SUMMARY.md
extra:
analytics:
provider: google
property: G-QNE8JMYY88
feedback:
title: Was this page helpful?
ratings:
- icon: material/thumb-up-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/thumb-down-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback! Help us improve this page by
using our <a href="https://github.com/mlcommons/medperf/issues/new?title=[Feedback]+{title}+-+{url}" target="_blank" rel="noopener">feedback form</a>.
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- admonition
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: True
- attr_list
- md_in_html
extra_css:
- styles/styles.css
extra_javascript:
- scripts/script.js