forked from jbloomAus/SAELens
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
76 lines (66 loc) · 1.82 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
site_name: SAELens Training
site_description: Docs for Sparse Autoencoder Training Library
site_author: Joseph Bloom
repo_url: http://github.com/jbloomAus/mats_sae_training/
repo_name: jbloomAus/mats_sae_training
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
icon:
repo: fontawesome/brands/github
extra_javascript:
- javascript/custom_formatting.js
# The below three make MathJax work, see https://squidfunk.github.io/mkdocs-material/reference/mathjax/
- javascript/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
nav:
- Home: index.md
- Roadmap: roadmap.md
- Installation: installation.md
- Training SAEs: training_saes.md
# - Analysis: usage/examples.md
- Reference:
- Language Models: reference/language_models.md
- Toy Models: reference/toy_models.md
- Misc: reference/misc.md
- About:
- Citation: about/citation.md
- Contributing: about/contributing.md
plugins:
- search
- autorefs
- section-index
- mkdocstrings:
custom_templates: null
watch:
- sae_lens/ # Replace with the path to your Python code
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences