-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
71 lines (67 loc) · 1.73 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
site_name: Documentation
site_description: Lightweight Machine Learning Library in C
repo_url: https://github.com/jaywyawhare/C-ML
site_author: Arrry
theme:
name: material
logo: light-mode.svg
favicon: light-mode.svg
palette:
- media: "(prefers-color-scheme)"
toggle:
icon: material/link
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
font:
text: "Roboto"
code: "Source Code Pro"
icon:
logo: logo
nav:
- Home: index.md
- Features: features.md
- Installation: installation.md
- Usage: usage.md
- Modules:
- Core: modules/core.md
- Layers: modules/layers.md
- Activations: modules/activations.md
- Loss Functions: modules/loss_functions.md
- Optimizers: modules/optimizers.md
- Preprocessing: modules/preprocessing.md
- Regularizers: modules/regularizers.md
- Metrics: modules/metrics.md
- Testing: testing.md
- Development Guidelines: development_guidelines.md
- Design Guide: DesignGuide.md
- Contributing: contributing.md
- License: license.md
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/jaywyawhare/C-ML
markdown_extensions:
- toc
- tables
- admonition
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.emoji
- pymdownx.tasklist
- pymdownx.details
- pymdownx.mark
- pymdownx.tilde