forked from Kipok/NeMo-Skills
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
63 lines (63 loc) · 1.8 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
site_name: NeMo-Skills
site_url: https://kipok.github.io/NeMo-Skills
extra_css:
- css/extra.css
theme:
name: material
logo: favicon.ico
favicon: favicon.ico
palette:
primary: blue grey
features:
- content.code.copy
- content.code.annotate
- navigation.instant
- navigation.instant.progress
- navigation.tabs
- navigation.tabs.sticky
- navigation.indexes
- toc.follow
markdown_extensions:
- meta
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- admonition
- pymdownx.details
- pymdownx.superfences
- toc:
permalink: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- Getting started: index.md
- Basics:
- Prerequisites: basics/prerequisites.md
- Inference: basics/inference.md
- Prompt format: basics/prompt-format.md
- Common parameters: basics/common-parameters.md
- Pipelines:
- Generation: pipelines/generation.md
- Evaluation: pipelines/evaluation.md
- Training: pipelines/training.md
- Checkpoint conversion: pipelines/checkpoint-conversion.md
- LLM-as-a-judge: pipelines/llm-as-a-judge.md
- Decontamination: pipelines/decontamination.md
- Code execution:
- Sandbox: code-execution/sandbox.md
- OpenMathInstruct:
- openmathinstruct2/index.md
- Model evaluation: openmathinstruct2/evaluation.md
- Dataset construction: openmathinstruct2/dataset.md
- Model training: openmathinstruct2/training.md