-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
307 lines (297 loc) · 11.4 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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
site_name: Lily's Notebook
site_url: https://note.lilyarnold.cc/
site_description: Lily's Notebook
copyright: Copyright © 2022 <a href="https://github.com/sorceressyidi" target="_blank" rel="noopener">sorceressyidi</a>
theme:
name: material
language: zh
primary: indigo
accent: indigo
logo: log.ico
favicon: log.ico
features:
- navigation.tracking
- navigation.tabs
- navigation.indexes
- navigation.top
- navigation.footer
- toc.follow
- search.suggest
- search.highlight
- search.share
- header.autohide
- content.code.copy
- content.code.select
- content.code.annotate
font:
text: Roboto
code: Roboto Mono
palette: #切换昼夜模式的颜色,审美差就用默认,专业点就自定义
- media: "(prefers-color-scheme: light)"
scheme: default #配色方案:浅色模式
primary: deep pink
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
nav:
- Home:
- index.md
- Papers:
- Diffusion Models:
- DDPM: Papers/DM/DDPM.md
- DDIM: Papers/DM/DDIM.md
- Stable Diffusion: Papers/DM/SD.md
- NeRF: Papers/NeRF/Theory.md
- 4DGS:
- 2023.10-ICLR: Papers/4DGS/paper.md
- Computer Science(ZJU):
- Theoretical Computer Science:
- Lecture 1 - Finite Automata : 计算理论/lec1/Lecture1.md
- Lecture 2 - Regular Language : 计算理论/lec2/Lecture2.md
- Lecture 3 - Context-Free Language : 计算理论/lec3/Lecture3.md
- Lecture 4 - Push-Down-Automata : 计算理论/lec4/Lecture4.md
- Lecture 5 - Turing Machine : 计算理论/lec5/Lecture5.md
- Lecture 6 - Containments properties of languages : 计算理论/lec6/Lecture6.md
- Lecture 7 - Decidability : 计算理论/lec7/Lecture7.md
- Lecture 8 - Gödel's Incompleteness Theorems : 计算理论/lec8/Lecture8.md
- Lecture 9 - Complexity - Time : 计算理论/lec9/Lecture9.md
- Lecture 10 - Complexity - Space : 计算理论/lec10/Lecture10.md
- Operating System:
- Lecture 1 - Introduction : OS/lec1/lec1.md
- Lecture 2 - OS Structure : OS/lec2/lec2.md
- Lecture 3 - Process : OS/lec3/lec3.md
- Lecture 4 - Schedule : OS/lec4/lec4.md
- Lecture 5 - IPC : OS/lec5/lec5.md
- Lecture 6 - Thread : OS/lec6/lec6.md
- Lecture 7 - Synchronization : OS/lec7/lec7.md
- Lecture 8 - Synchronization II : OS/lec8/lec8.md
- Lecture 9 - Deadlock : OS/lec9/lec9.md
- Lecture 10 - Main Memory : OS/lec10/lec10.md
- Lecture 11 - Virtual Memory : OS/lec11/lec11.md
- Lecture 12 - Mass Storage : OS/lec12/lec12.md
- Lecture 13 -I/O System : OS/lec13/lec13.md
- Lecture 14 - File System : OS/lec14/lec14.md
- Lecture 15 - OS Security : OS/lec15/lec15.md
- PPL:
- Lecture 1 - lambda calculus : PPL/lec1/lec1.md
- Lecture 2 - Abstract Syntax Trees : PPL/lec2/lec2.md
- Computer Graphic:
- Lecture 1 - 2D Graphics : CG/lec1/lec1.md
- Fundamentals of Data Structure:
- Maximum Subsequence Sum Problem: note/最大子列和.md
- Basic data Structures I: note/基础数据结构.md
- Basic data Structures II: note/basicII.md
- Sort : note/sort.md
- HASH : note/hash.md
- DIP:
- Basic concept and programming introduction : DIP/Basic/DIP.md
- Binary image and morphology : DIP/chap2/chap2.md
- Basic Operation : DIP/chap3/chap3.md
- Image morphing: DIP/morph/morph.md
- image filter: DIP/filter/filter.md
- Fourier transform : DIP/Fourier/Fourier.md
- Image feature : DIP/feature/feature.md
- Deep Learning : DIP/DL/DL.md
- OOP(C++):
- Itro & Class: oop/Basic/Basic.md
- Container & Function: oop/Container/Container.md
- Inheritance & Polymorphism: oop/inheritance/lec.md
- (Copy & Move )Constructor & Overloading: oop/copy/lec.md
- Template & STL: oop/template/lec.md
- Exception & File: oop/Exceptions/lec.md
- Smart Pointer : oop/Smart/lec.md
- Anvanced Data Structure:
- Trees: ADS/Tree/lec.md
- Heap : ADS/Heap/lec.md
- Analysis:
- backtracking: ADS/back/lec.md
- Divide and Conquer: ADS/D&C/lec.md
- Dynamic Programming: ADS/dy/lec.md
- Greedy Algorithm : ADS/greedy/lec.md
- NP-Completeness: ADS/NP/lec.md
- Approximation : ADS/approx/lec.md
- Randomized Algorithm : ADS/rand/lec.md
# - Database System:
# - Inclass:
# - SQL : CMU 15-445/Chap2_inclass/lec.md
# - E-R Model : CMU 15-445/ER/lec.md
# - Relational Database Design : CMU 15-445/Relational/lec.md
# - CMU 15-445:
# - Chapter 1 : CMU 15-445/Chap1/Chap1.md
# - Chapter 2 : CMU 15-445/Chap2/Chap2.md
# - Chapter 3-5:Storage : CMU 15-445/Chap3/Chap3.md
# - Chapter 6 : CMU 15-445/Chap6/lec.md
# - Chapter 8 : CMU 15-445/Chap8/Chap8.md
# - Chapter 11 : CMU 15-445/Chap11/lec.md
- Computer Organization :
- Chapter1 : 计组/Intro/intro.md
- Chapter2 : 计组/Chap2/lec.md
- Chapter3 : 计组/Chap3/lec.md
# - Computer Logic Design:
# - Chapter 1 Digital Systems and Information : 计算机逻辑设计基础/Chap1/chap1.md
# - Chapter 2 Combinational Logic : 计算机逻辑设计基础/Chap2/chap2.md
# - Chapter 3 Combinational Logic Design : 计算机逻辑设计基础/Chap3/chap3.md
# - Chapter 4 Sequential Logic : 计算机逻辑设计基础/Chap4/chap4.md
# - Chapter 5 Digital Hardware Implementation : 计算机逻辑设计基础/DHI/Digital Hardware Implementation.md
# - Chapter 6 Register : 计算机逻辑设计基础/Register/register.md
# - Chapter 7 Memory Basics : 计算机逻辑设计基础/MB/MB.md
- Math & Physics:
- General physics II :
- Electromagnetics:
- Electrci Charge & Field & Potential: GP/lec1-3/lec1.md
- Current : GP/current/current.md
- The Magnetic Field : GP/mag/mag.md
- Electromagnetic Integration : GP/com/com.md
- Optics:
- Light Waves : GP/light/light.md
- interference & refraction: GP/light/inteference.md
- Diffraction(&inteference) : GP/light/df/diffraction.md
- Polarization : GP/Polar/Polarization.md
- Quantum : GP/light/quantum light/quantum.md
- Quantum :
- matter wave: GP/matter wave/matter.md
- Schroedinger's Equation : GP/sch/sch.md
- Quantum Wells: GP/QW/QW.md
- The Hydrogen Atom : GP/HA/HA.md
- Angular Momentum and Spin: GP/AMAS/AMAS.md
- Probability Theory :
- 随机变量与分布函数: PT/PT.md
- Order Statistics : PT/order_stats.pdf
- 数字特征与特征函数: PT/数字特征与特征函数.md
- Computer Vision :
- ML-4360:
- Basic Transformations : CV/ML-4360/BS/lec2.md
- structure from motion : CV/ML-4360/SFM/lec3.md
- Stereo Reconstruction : CV/ML-4360/SR/lec4.md
- Probabilistic Graphical Models: CV/ML-4360/PGM/lec5.md
- Shape-From-X : CV/ML-4360/SFX/lec8.md
- Coordinate-Based Networks : CV/ML-4360/CBN/lec9.md
- Recognition : CV/ML-4360/Recognition/lec10.md
- Self-Supervised Learning : CV/ML-4360/Self/lec.md
- Diverse Topics in Computer Vision : CV/ML-4360/Diverse/lec.md
# - AI :
- EECS 498.008 / 598.008:
- Classification: DL_CV/class/lec.md
- Neural Networks: DL_CV/neural/lec.md
- Convolutional Neural Networks: DL_CV/CNN/lec.md
- Hardware & Software: DL_CV/Pytorch/lec.md
- Traning Neural Networks: DL_CV/TN/lec.md
- Recognision : DL_CV/Recognition/lec10.md
- CS231n:
- Lecture 8 Recurrent Neural Networks: CS231n/RNN/lec.md
- Lecture 9 Attention & Transformers: CS231n/lec9/lec.md
- Lecture 10 Video Understanding: CS231n/lec10/lec.md
- Lecture 12 Visualizing and Understanding: CS231n/lec12/lec.md
# - Lecture 13 Self-Supervised Learning: CS231n/lec13/lec.md
# - Lecture 14 Robot Learning: CS231n/lec14/lec.md
- Lecture 15 Generative Models: CS231n/lec15/lec.md
# - Lecture 16 3D Vision: CS231n/lec16/lec.md
- Miscellaneous :
- 随笔:
- Invisible : invisible.md
- 大侠 : 大侠.md
markdown_extensions:
- pymdownx.arithmatex: # mathjax
generic: true
- pymdownx.highlight: # syntax highlight
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.tabbed: # Content tabs
alternate_style: true
- tables # table
- def_list # lists
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
toc_depth: 4
- 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:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.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
- css/extra.css
extra_javascript:
- javascripts/extra.js
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/sorceressyidi/
analytics:
provider: google
property: G-ES1C2PJ4CE
feedback:
title: Is this page helpful?
ratings:
- icon: material/thumb-up-outline
name: This page was helpful
data: 1
note: >-
Thanks for your feedback!
- icon: material/thumb-down-outline
name: This page could be improved
data: 0
note: >-
Thanks for your feedback!
consent:
title: Cookie consent
description: >-
We also use cookies to identify your repeated visits and preferences to measure the effectiveness of our documentation and whether users find what they're looking for. If you consent, you can help us make our website better.
plugins:
- tags:
tags_file: tags.md
- search
- git-revision-date-localized:
type: datetime
fallback_to_build_date: true
timezone: Asia/Shanghai
locale: zh
enable_creation_date: true
exclude:
- index.md
- git-authors