-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathmkdocs.yml
More file actions
94 lines (82 loc) · 2.09 KB
/
mkdocs.yml
File metadata and controls
94 lines (82 loc) · 2.09 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
site_name: SAE Lens
site_description: Docs for Sparse Autoencoder Training and Analysis Library
site_author: Joseph Bloom
site_url: https://decoderesearch.github.io/SAELens/
repo_url: http://github.com/decoderesearch/SAELens
repo_name: decoderesearch/SAELens
edit_uri: ""
theme:
name: material
font:
text: Nunito
palette:
- scheme: default
primary: green
accent: yellow
background: white
# Palette toggle for light mode
toggle:
icon: material/lightbulb
name: Switch to dark mode
# Palette toggle for dark mode
- scheme: slate
primary: green
accent: yellow
background: white
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
features:
- navigation.instant
- navigation.path
icon:
repo: fontawesome/brands/github
extra_javascript:
- assets/saetable.js
# The below three make MathJax work, see https://squidfunk.github.io/mkdocs-material/reference/mathjax/
# - javascript/mathjax.js
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra_css:
- assets/saetable.css
nav:
- Home: index.md
- Usage: usage.md
- Training SAEs: training_saes.md
- Synthetic Data: synthetic_data.md
- Custom SAEs: custom_saes.md
- Extending SAELens: extending_saelens.md
- SynthSAEBench: synth_sae_bench.md
- Citation: citation.md
- Contributing: contributing.md
- Migrating to v6: migrating.md
- API: api.md
- Pretrained SAEs: pretrained_saes/index.md
validation:
nav:
not_in_nav: ignore
plugins:
- search
- autorefs
- section-index
- mike
- redirects:
redirect_maps:
'sae_table.md': 'pretrained_saes/index.md'
- mkdocstrings:
custom_templates: null
watch:
- sae_lens/ # Replace with the path to your Python code
hooks:
- docs/generate_sae_table.py
markdown_extensions:
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extra:
version:
provider: mike