-
Notifications
You must be signed in to change notification settings - Fork 147
/
mkdocs.yml
105 lines (101 loc) · 3.45 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
site_name: Autolabel
site_url: https://refuel.ai
repo_url: https://github.com/refuel-ai/autolabel
repo_name: refuel-ai/autolabel
nav:
- Guide:
- Introduction: index.md
- Getting Started: guide/overview/getting-started.md
- Tutorial - Toxic comment classification: guide/overview/tutorial-classification.md
- Models:
- LLMs: guide/llms/llms.md
- Embedding Models: guide/llms/embeddings.md
- Benchmarks: guide/llms/benchmarks.md
- Labeling Tasks:
- Classification Task: guide/tasks/classification_task.md
- Multilabel Classification Task: guide/tasks/multilabel_classification_task.md
- Entity Matching Task: guide/tasks/entity_matching_task.md
- Named Entity Recognition Task: guide/tasks/named_entity_recognition_task.md
- Question Answering Task: guide/tasks/question_answering_task.md
- Transformations:
- Introduction: guide/transforms/introduction.md
- Webpage Transform: guide/transforms/webpage_transform.md
- PDF Transform: guide/transforms/pdf_transform.md
- Image Transform: guide/transforms/image_transform.md
- Improving Labeling Accuracy:
- Prompting Better: guide/accuracy/prompting-better.md
- Few-shot Prompting: guide/accuracy/few-shot.md
- Confidence: guide/accuracy/confidence.md
- Chain of Thought: guide/accuracy/chain-of-thought.md
- Reliability and Robustness:
- LLM Output Caching: guide/reliability/llm-output-caching.md
- State Management: guide/reliability/state-management.md
- Working with Autolabel:
- Configs: guide/resources/configs.md
- AutolabelDataset: guide/resources/autolabel_dataset.md
- CLI: guide/resources/CLI.md
- Refuel-provided Datasets: guide/resources/refuel_datasets.md
- Synthetic Dataset Generation: guide/resources/synthetic_dataset_generation.md
#- Concepts: concepts/concepts.md
# remove for now
- Reference:
- AutoLabeler: reference/labeler.md
- Config: reference/configs.md
- Models: reference/models.md
- Tasks: reference/tasks.md
- Schema: reference/schema.md
- Cache: reference/cache.md
- Example Selector: reference/example_select.md
- Data Models: reference/data_models.md
theme:
name: material
favicon: assets/favicon.ico
logo: assets/logo.png
features:
- navigation.instant
- navigation.tabs
- navigation.sections
- navigation.top
- toc.follow
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
language: en
palette:
- scheme: default
toggle:
icon: material/toggle-switch-off-outline
name: Switch to dark mode
primary: indigo
- scheme: slate
toggle:
icon: material/toggle-switch
name: Switch to light mode
primary: indigo
plugins:
- mkdocstrings
- search
- mkdocs-jupyter
- table-reader
markdown_extensions:
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- admonition
- pymdownx.arithmatex:
generic: true
- footnotes
- pymdownx.details
- pymdownx.superfences
- pymdownx.mark
- attr_list
- tables
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
- toc:
permalink: true