-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
223 lines (195 loc) · 5.62 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# Project information
site_name: Lefebvre Sarrut's AI blog
site_url: https://www.ai.lefebvre-sarrut.eu
site_author: Lefebvre Sarrut
site_description: >-
A blog fully dedicated to AI at Lefebvre Sarrut
# Copyright
copyright: Copyright © 2022-2023 <a href="https://www.lefebvre-sarrut.eu/" target="_blank" rel="noopener">➜ Lefebvre Sarrut</a>
# Configuration
theme:
name: material
custom_dir: docs/overrides
favicon: assets/favicon.png
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-4
name: Switch to dark mode
primary: white
accent: deep purple
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-7
name: Switch to light mode
primary: deep purple # old: black
accent: deep purple
font:
text: Quicksand # Fredoka | Lexend | Lexend Deca | Outfit | Quicksand | Questrial | Poppins
code: Roboto Mono
icon:
logo: lefebvre-sarrut/logo
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.path
- navigation.prune
- navigation.top
- navigation.footer
- search.suggest
- search.highlight
- search.share
- toc.follow
- content.code.copy # code copy button enabled globally
- content.code.annotate # code annotations enabled globally
- content.tabs.link # all content tabs across the whole documentation site will be linked
- content.tooltips # add tooltips on hover
# Plugins
plugins:
- blog:
blog_dir: . # defined as standalone blog.
post_date_format: long
post_url_date_format: yyyy/MM/dd
post_url_format: "{date}/{slug}"
post_readtime: true
archive: true
archive_name: Archive
archive_date_format: yyyy
archive_url_format: "archive/{date}"
categories: true
categories_name: Categories
categories_url_format: "category/{slug}"
categories_toc: false
categories_allowed:
- Benchmarking
- Kernl
- Justice
- Large Language Models
- Machine Learning
- Optimization
- Pytorch
- Quality test
- Transformer-Deploy
- Transformers
pagination: true
pagination_per_page: 10
pagination_url_format: "page/{page}"
pagination_template: "$link_first $link_previous ~2~ $link_next $link_last"
pagination_keep_content: false
authors: true
authors_file: .authors.yml
draft: false # drafts are not published
draft_on_serve: true # drafts are previewable
draft_if_future_date: false
- tags:
tags_file: tags.md
tags_allowed:
- Anonymization
- Bert
- Cuda
- Cuda Graph
- Data Science
- Deep Dives
- Deep Learning
- Flair
- GPT-3
- GPU Quantization
- Hugging Face
- Justice
- Kernel
- Llama
- Machine Learning
- NLP
- Notes From Industry
- Nvidia Triton
- ONNX Runtime
- OpenAI Triton
- OpenAI Whisper
- Programming
- Python
- Pytorch
- Spacy
- T5
- Technology
- TensorRT
- TorchDynamo
- Transformers
- typeset # preserves html formatting in the navigation and t.o.c
- search
- glightbox # image zoom functionality plugin
- meta
- privacy:
enabled: true
external_assets_exclude:
- cdn.jsdelivr.net/npm/mathjax@3/*
- giscus.app/* # necessary for the functioning of giscus (404 error otherwise)
# external_links: true # github action > Unrecognised configuration name: external_links
external_links_attr_map:
target: _blank
external_links_noopener: true
- optimize:
enabled: !ENV [CI, false] # only run on ci (requires 3rd party libraries)
# Customization
extra:
generator: false # remove "made with material for mkdocs" notice.
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/LefebvreSarrut
name: Lefebvre Sarrut on Twitter
- icon: fontawesome/brands/linkedin
link: https://fr.linkedin.com/company/els-group
name: Lefebvre Sarrut on Linkedin
- icon: simple/maildotru
link: mailto:rd-feedback@lefebvre-sarrut.eu
name: Contact us
extra_css:
- stylesheets/extra.css
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# Extensions
markdown_extensions:
- attr_list
- md_in_html
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- tables
- footnotes
- pymdownx.critic
- pymdownx.caret
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
options:
custom_icons:
- overrides/.icons
- def_list
- pymdownx.tasklist:
custom_checkbox: true
- abbr
- pymdownx.arithmatex:
generic: true
# Page tree
nav:
- index.md # defined as standalone blog.
# - Tags: tags.md # if you want an entry in the navigation