-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmkdocs.yml
50 lines (44 loc) · 1.36 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
site_name: "llm-datasets: Documentation"
site_url: https://github.com/malteos/llm-datasets/
site_description: "Documentation of the llm-datasets framework."
site_author: "Malte Ostendorff and llm-datasets contributors"
docs_dir: docs/
repo_name: "GitHub"
repo_url: "https://github.com/malteos/llm-datasets/"
nav:
- "Home": index.md
- "Getting started": getting-started.md
- "Framework overview": overview.md
- "Available datasets": datasets/index.md
- "Config files": config-files.md
- "Extract text data": extract-text-data.md
- "Adding your own data": add-your-own-data.md
- "Compose training and validation dataset": compose-train-validation-data.md
- "Integration with other frameworks": integration-with-other-frameworks.md
- "Related work": related-work.md
- "API reference":
- "BaseDataset": api/base_dataset.md
- "HFDataset": api/hf_dataset.md
- "JSONLDataset": api/jsonl_dataset.md
- "Config": api/config.md
theme:
name: "material"
# logo: "images/apple-touch-icon.png"
plugins:
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
- search
- exclude:
glob:
- README.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences