forked from embeddings-benchmark/mteb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
135 lines (127 loc) · 3.57 KB
/
mkdocs.yml
File metadata and controls
135 lines (127 loc) · 3.57 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
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
135
site_name: Massive Text Embedding Benchmark
docs_dir: "docs/"
repo_url: https://github.com/embeddings-benchmark/mteb
watch: [mteb/, docs/]
edit_uri: "blob/main/docs/"
theme:
name: material
favicon: images/logos/mteb_logo/dots-icon.png
logo: images/logos/mteb_logo/dots-icon.png
features:
- navigation.tracking
- navigation.instant
- navigation.tabs
- navigation.sections
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
- content.action.edit
- content.action.view
- content.code.annotate
- content.tooltips
- navigation.footer
- navigation.indexes
- toc.follow
palette:
# System preference (auto)
- media: "(prefers-color-scheme)"
scheme: default
primary: white
accent: light blue
toggle:
icon: material/brightness-auto
name: Switch to light mode
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: white
accent: light blue
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- toc:
permalink: true
toc_depth: 3
- footnotes
- attr_list
- md_in_html
- tables
copyright: This text is freely available under a Creative Commons Attribution 4.0 license
nav:
- Get Started:
- index.md
- whats_new.md
- Installation: installation.md
- Usage:
- Get Started: usage/get_started.md
- Defining the Model: usage/defining_the_model.md
- Selecting Tasks: usage/selecting_tasks.md
- Running the Evaluation: usage/running_the_evaluation.md
- Loading Results: usage/loading_results.md
- Command Line Interface: usage/cli.md
- Running the Leaderboard: usage/leaderboard.md
- Advanced Usage:
- Two stage reranking: advanced_usage/two_stage_reranking.md
- Cache embeddings: advanced_usage/cache_embeddings.md
- Contributing:
- Adding a Model: contributing/adding_a_model.md
- Adding a Task: contributing/adding_a_dataset.md
- Adding a Benchmark: contributing/adding_a_benchmark.md
- Guidelines: CONTRIBUTING.md
- Overview:
- overview/index.md
- Benchmarks:
- Available Benchmarks: overview/available_benchmarks.md
- Tasks:
- Available Tasks: overview/available_tasks
- Models:
- Available Models: overview/available_models
- API:
- Overview: api/index.md
- Evaluation: api/evaluation.md
- Benchmark: api/benchmark.md
- Task: api/task.md
- Model: api/model.md
- Results: api/results.md
- Additional Types: api/types.md
- Leaderboard: https://huggingface.co/spaces/mteb/leaderboard
plugins:
- include_dir_to_nav
- search
- exclude:
glob:
# projects
- mieb/*
- mmteb/*
- mkdocstrings:
handlers:
python:
paths: [mteb]
type: python
root_package: mteb
docstring_style: google
options:
heading_level: 3
show_source: true
show_root_heading: true
- bibtex:
bib_file: "docs/references.bib"
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/embeddings-benchmark/mteb