-
Notifications
You must be signed in to change notification settings - Fork 252
/
mkdocs.yml
68 lines (67 loc) · 1.51 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
site_name: CRFM HELM
repo_url: https://github.com/stanford-crfm/helm/
edit_uri: blob/main/docs/
theme:
name: readthedocs
highlightjs: false
plugins:
- search
- macros:
module_name: docs/mkdocs_macros
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
show_signature_annotations: true
show_bases: false
show_source: false
show_root_full_path: false
show_if_no_docstring: true
members_order: source
merge_init_into_class: true
docstring_options:
ignore_init_summary: true
- include-markdown
hooks:
- docs/mkdocs_hooks.py
extra_css:
- docstrings.css
markdown_extensions:
- pymdownx.magiclink
watch:
- src
nav:
- Home:
- index.md
- User Guide:
- installation.md
- quick_start.md
- tutorial.md
- run_entries_configuration_files.md
- run_entries.md
- credentials.md
- importing_custom_modules.md
- adding_new_models.md
- adding_new_scenarios.md
- adding_new_tokenizers.md
- downloading_raw_results.md
- reproducing_leaderboards.md
- get_helm_rank.md
- benchmark.md
- huggingface_models.md
- Multimodality:
- heim.md
- vhelm.md
- Reference:
- models.md
- metrics.md
- perturbations.md
- scenarios.md
- schemas.md
- Developer Guide:
- developer_setup.md
- code.md
- developer_adding_new_models.md
- proxy_server.md
- editing_documentation.md