-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
76 lines (73 loc) · 1.8 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: tiny_pytorch
nav:
- Home: index.md
- NDArray: ndarray.md
- Tensor: tensor.md
- Utils: utils.md
- Optimizer: optim.md
- NN: nn.md
- Initialization: init.md
- Data: data.md
- Operators: ops.md
- Device: device.md
plugins:
- search
- mkdocstrings:
default_handler: python
handlers:
python:
options:
show_source: false
docstring_style: numpy
docstring_section_style: list
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
theme:
name: material
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: amber
toggle:
icon: material/brightness-7
name: Switch to light mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: amber
toggle:
icon: material/brightness-4
name: Switch to dark mode
features:
- search.suggest
- search.highlight
- content.tabs.link
icon:
repo: fontawesome/brands/github-alt
language: en
repo_name: ImadDabbura/tiny-pytorch
repo_url: https://github.com/ImadDabbura/tiny-pytorch
edit_uri: ""
extra:
version:
provider: mike
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/ImadDabbura/tiny-pytorch
- icon: fontawesome/brands/twitter
link: https://twitter.com/ImadPhd
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/imaddabbura/
- icon: fontawesome/brands/medium
link: https://medium.com/@ImadPhd
- icon: fontawesome/solid/globe
link: https://imaddabbura.github.io/
watch:
- .