-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
76 lines (76 loc) · 2.32 KB
/
Copy pathmkdocs.yml
File metadata and controls
76 lines (76 loc) · 2.32 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
site_name: trainax
site_description: Convenient data loader and training utilities for JAX models
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- content.code.annotate
- content.code.copy
- content.tooltips
- toc.follow
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/toggle-switch
name: Switch to light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/toggle-switch
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/toggle-switch-off
name: Switch to system preference
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src]
options:
docstring_style: numpy
show_source: false
show_root_heading: true
members_order: source
separate_signature: true
- mkdocs-jupyter:
execute: false
include_source: true
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start (EQX): getting-started/quickstart_eqx.md
- Quick Start (NNX): getting-started/quickstart_nnx.md
- Tutorials:
- Intro — Equinox regression: tutorials/eqx_regression.ipynb
- Intro — NNX image classification (MNIST): tutorials/nnx_mnist.ipynb
- Advanced — Stateful EQX models (BatchNorm): tutorials/eqx_stateful.ipynb
- Advanced — Custom callbacks: tutorials/custom_callbacks.ipynb
- Advanced — Data sharding: tutorials/data_sharding.ipynb
- API Reference:
- Trainers: api/trainers.md
- Callbacks: api/callbacks.md
- Data Loaders: api/dataloaders.md
- Types: api/types.md
- File Handler: api/file_handler.md
- Concepts:
- Architecture overview: concepts/architecture.md
- Step functions: concepts/step_functions.md
- Callback hooks: concepts/callbacks.md
- Sharding: concepts/sharding.md