-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
189 lines (178 loc) · 5.76 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
site_name: Thorin's Notebook
site_url: https://note.thorin215-wang.com/
repo_name: Thorin215/note #存储库名称,一般自动设置
repo_url: https://github.com/Thorin215/note/ #存储库URL
# edit_uri: tree/master/docs #每个文档的顶部显示一个编辑按钮,""则隐藏
site_description: Thorin's Notebook
copyright: Copyright © 2022 <a href="https://github.com/Thorin215" target="_blank" rel="noopener">Thorin</a>
theme:
name: material
language: zh
# logo: log.ico
# favicon: log.ico
custom_dir: overrides
features:
- content.code.annotate
- navigation.tracking
- navigation.tabs
- navigation.indexes
- navigation.top
font:
text: LXGW WenKai Screen
code: JetBrains Mono
palette: #切换昼夜模式的颜色,审美差就用默认,专业点就自定义
- media: "(prefers-color-scheme: light)"
scheme: default #配色方案:浅色模式
# primary: brown #原色,默认蓝,用于标题、侧边栏、文本链接和其他几个组件
# accent: brown #强调色,默认蓝,可以交互的元素如悬停链接、按钮和滚动条
toggle:
icon: material/weather-sunny #图标,太阳
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate #配色方案:深色模式
# primary: Brown #原色,默认蓝,用于标题、侧边栏、文本链接和其他几个组件
toggle:
icon: material/weather-night #图标,月亮
name: Switch to light mode
markdown_extensions:
- toc:
permalink: true
toc_depth: 4
- admonition
- meta
- def_list
- attr_list
- md_in_html
- sane_lists
- admonition
- pymdownx.keys
- pymdownx.mark
- pymdownx.tilde
- pymdownx.critic
- pymdownx.details
- pymdownx.snippets
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.inlinehilite
- pymdownx.smartsymbols #智能符号
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.arithmatex:
generic: true
extra_css:
- https://gcore.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.css
- https://gcore.jsdelivr.net/npm/lxgw-wenkai-screen-webfont@1.1.0/style.css
- https://gcore.jsdelivr.net/npm/lxgw-wenkai-webfont@1.1.0/style.css
- css/custom.css
- css/card.css
- css/tasklist.css
- css/flink.css
- css/more_changelog.css
extra_javascript:
- js/baidu-tongji.js
- https://gcore.jsdelivr.net/npm/katex@0.15.1/dist/katex.min.js
- js/katex.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/Thorin215/
plugins:
- changelog
- search
- git-revision-date-localized:
type: datetime
timezone: Asia/Shanghai
locale: zh
enable_creation_date: true
exclude:
- index.md
- comming.md
- link.md
- tech_accu/index.md
- cour_note/index.md
nav:
- Home:
- index.md
# - 更新记录: changelog.md
- 友链: link.md
- Computer Science:
- Oriented Object Programming:
- OOP/index.md
- C++语言特性: OOP/oop1.md
- 类的基本性质: OOP/oop2.md
- CS61A:
- CS61A/index.md
- Structure and Interpretation of Computer Programs: CS61A/61a1.md
- Data Abstraction: CS61A/61a2.md
- Oriented Object Programming: CS61A/61a3.md
- Python:
- Python/index.md
- 作业易错题整理: Python/problems.md
- Introduction: Python/Py1.md
- Basic Data Types: Python/Py2.md
- Basic Syntax: Python/Py3.md
- Advanced Data Structure and Algorithm:
- ADS/index.md
- Homework Review : ADS/HW.md
- AVL Trees, Splay Trees, and Amortized Analysis: ADS/ADS1.md
- Red-Black Trees and B+ Trees: ADS/ADS2.md
- Inverted File Index : ADS/ADS3.md
- Leftist Heaps and Skew Heaps: ADS/ADS4.md
- Mechine Learning In the Data Analysis:
- ML/index.md
- Beyasian Data Analysis: ML/ML4.md
- System:
- Computer Organization:
- CO/index.md
# - Hits 题解: MISC/bit.md
- Computer Abstraction and Technology : CO/CO1.md
- Arithmetic for Computer : CO/CO2.md
- Instruction : CO/CO3.md
- Database System:
- DB/index.md
- Introduction: DB/DB1.md
- Relational Model: DB/DB2.md
- SQL介绍: DB/DB3.md
- 中级SQL: DB/DB4.md
- Mathematics and Physics:
- Ordinary Differential Equations:
- ODE/index.md
- 基本定义: ODE/ode1.md
- 变量分离: ODE/ode2.md
- Paper Reading:
- Paper/index.md
- Diffusion:
- DDPM: Paper/Diffusion/DDPM.md
- StyleStudio: Paper/Diffusion/StyleStudio.md
- RecFG: Paper/Diffusion/RecFG.md
- Multi-Modal :
- MQT-LLaVA: Paper/MLLM/MQT-LLaVA.md
- mPLUG-Owl: Paper/MLLM/mPLUG-Owl.md
- LLaVAOneVision: Paper/MLLM/LLaVAOneVision.md
- ViT: Paper/MLLM/ViT.md
- CLIP: Paper/MLLM/CLIP.md
- SAM: Paper/MLLM/SAM.md
- Stream-Video: Paper/MLLM/Stream-Video.md
- GROUNDHOG: Paper/MLLM/GROUNDHOG.md
- Autoregressive:
- Autoregressive: Paper/AR/Autoregressive Model.md
- Eff-VAR: Paper/AR/Eff-VAR.md
- VAR: Paper/AR/VAR.md
- Infinity: Paper/AR/Infinity.md
- Fractal Generative Models: Paper/AR/Fractal Generative Models.md
- Thinking and Writing:
- Think/index.md
- 序言: Think/Intro.md
#- Writing/index.md
# - Travel and Photography:
# - English: