-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathmkdocs.yml
More file actions
57 lines (48 loc) · 1.68 KB
/
mkdocs.yml
File metadata and controls
57 lines (48 loc) · 1.68 KB
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
site_name: THUNDER
repo_name: MICS-Lab/thunder
site_url: https://mics-lab.github.io/thunder
repo_url: https://github.com/MICS-Lab/thunder
extra_css:
- stylesheets/extra.css
- https://cdn.jsdelivr.net/npm/datatables.net-bs5@1.13.7/css/dataTables.bootstrap5.min.css
- https://cdn.datatables.net/searchpanes/2.3.3/css/searchPanes.dataTables.min.css
extra_javascript:
- https://code.jquery.com/jquery-3.7.1.min.js
- https://cdn.jsdelivr.net/npm/datatables.net@1.13.7/js/jquery.dataTables.min.js
- https://cdn.jsdelivr.net/npm/datatables.net-bs5@1.13.7/js/dataTables.bootstrap5.min.js
- https://cdn.datatables.net/select/1.3.1/js/dataTables.select.min.js
- https://cdn.datatables.net/searchpanes/2.3.3/js/dataTables.searchPanes.min.js
- javascripts/rank-table.js
nav:
- Home: index.md
- Leaderboards: leaderboards.md
- Tutorials:
- Getting Started: getting_started.md
- Guidelines to benchmark an exisiting (reproducing our results) or new model: guidelines.md
- Data Loading (Linear Probing & Segmentation): data_loading.md
- Examples: examples.md
- Benchmarking a Custom Model: custom_model.md
- Benchmarking on a Custom Dataset: custom_dataset.md
- Overriding Configurations: custom_config.md
- Using foundation models on your data: get_model.md
- API: api.md
theme:
name: material
logo: logo.svg
favicon: logo.svg
palette:
primary: deep purple
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
show_root_heading: true
heading_level: 3
markdown_extensions:
- md_in_html
- attr_list
- admonition
- pymdownx.details
- pymdownx.superfences