-
Notifications
You must be signed in to change notification settings - Fork 68
/
mkdocs.yml
91 lines (83 loc) · 2.28 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
site_name: "REL: Radboud Entity Linker"
nav:
- Home: index.md
- API: server_api.md
- Tutorials:
- tutorials/how_to_get_started.md
- tutorials/e2e_entity_linking.md
- tutorials/evaluate_gerbil.md
- tutorials/deploy_REL_new_wiki.md
- tutorials/reproducing_our_results.md
- tutorials/server.md
- tutorials/custom_models.md
- tutorials/conversations.md
- Python API reference:
- api/entity_disambiguation.md
- api/generate_train_test.md
- api/mention_detection.md
- api/mulrel_ranker.md
- api/server.md
- api/training_datasets.md
- api/utils.md
- api/vocabulary.md
- api/wikipedia.md
- api/wikipedia_yago_freq.md
- Contributing: CONTRIBUTING.md
- Code of Conduct: CODE_OF_CONDUCT.md
- 🔗 Source code: https://github.com/informagi/REL
- 🔗 Issues: https://github.com/informagi/REL/issues
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
primary: blue
accent: red
scheme: default
toggle:
name: Switch to dark mode
icon: material/lightbulb
- media: "(prefers-color-scheme: dark)"
primary: blue
accent: red
scheme: slate
toggle:
name: Switch to light mode
icon: material/lightbulb-outline
extra_css:
- stylesheets/extra.css
markdown_extensions:
- admonition
- attr_list
- markdown_include.include:
base_path: docs
- pymdownx.extra
- pymdownx.arithmatex:
generic: true
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- search
- mkdocstrings:
# https://mkdocstrings.github.io/usage/
handlers:
python:
import:
- https://docs.python.org/3/objects.inv
- https://numpy.org/doc/stable/objects.inv
- https://docs.scipy.org/doc/scipy/objects.inv
- https://pandas.pydata.org/docs/objects.inv
options:
docstring_style: sphinx
docstring_options:
ignore_init_summary: yes
show_submodules: no
show_source: true
docstring_section_style: list
members_order: alphabetical
show_category_heading: no
merge_init_into_class: yes
watch:
- src/REL/
- docs/
- README.md