-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmkdocs.yml
More file actions
195 lines (170 loc) · 5.04 KB
/
mkdocs.yml
File metadata and controls
195 lines (170 loc) · 5.04 KB
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
# ============================================================
# MkDocs Configuration - AI Learning Notes 文檔網站
# ============================================================
site_name: AI Learning Notes | AI 學習筆記
site_description: 從 AI 基礎到 LLM 應用的完整學習指南
site_author: markl-a
site_url: https://markl-a.github.io/My-AI-Learning-Notes/
# Repository
repo_name: markl-a/My-AI-Learning-Notes
repo_url: https://github.com/markl-a/My-AI-Learning-Notes
edit_uri: edit/main/
# Copyright
copyright: Copyright © 2024-2025 AI Learning Notes Contributors
# Theme Configuration
theme:
name: material
language: zh-TW
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: deep purple
toggle:
icon: material/brightness-7
name: 切換深色模式
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: deep purple
toggle:
icon: material/brightness-4
name: 切換淺色模式
font:
text: Noto Sans TC
code: JetBrains Mono
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.indexes
- navigation.top
- search.suggest
- search.highlight
- search.share
- content.tabs.link
- content.code.copy
- content.code.annotate
- toc.follow
icon:
repo: fontawesome/brands/github
logo: material/brain
# Plugins
plugins:
- search:
lang:
- zh
- en
separator: '[\s\-\.]+'
- tags:
tags_file: tags.md
# Extensions
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
toc_depth: 3
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: markl-a
repo: My-AI-Learning-Notes
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
# Extra JavaScript for Math
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
# Extra CSS
extra_css:
- stylesheets/extra.css
# Extra Configuration
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/markl-a
name: GitHub
analytics:
provider: google
property: G-XXXXXXXXXX # 替換為實際的 GA ID
generator: false
# Version selector (for future use)
version:
provider: mike
# Navigation Structure
nav:
- 首頁: index.md
- 快速開始:
- 學習路徑: LEARNING_PATHS.md
- 快速入門: QUICKSTART.md
- 先修知識: PREREQUISITES.md
- 術語表: GLOSSARY.md
- 1. AI/LLM 基礎:
- 1.從AI到LLM基礎/README.md
- 深度學習基礎: 1.從AI到LLM基礎/深度學習基礎/README.md
- Transformer 架構: 1.從AI到LLM基礎/Transformer架構/README.md
- 預訓練模型: 1.從AI到LLM基礎/預訓練模型/README.md
- 2. LLM 模型工程:
- 2.深入LLM模型工程與LLM運維/README.md
- 模型訓練: 2.深入LLM模型工程與LLM運維/1.LLM訓練/README.md
- 模型評估: 2.深入LLM模型工程與LLM運維/2.LLM評估/README.md
- 模型微調: 2.深入LLM模型工程與LLM運維/3.微調技術/README.md
- 3. LLM 應用工程:
- 3.LLM應用工程/README.md
- LLM 部署: 3.LLM應用工程/1.LLM 部署/README.md
- LLM as API: 3.LLM應用工程/2.LLM as API/README.md
- Prompt Engineering: 3.LLM應用工程/3.提示工程學/README.md
- RAG 系統: 3.LLM應用工程/4.RAG/README.md
- Agent 框架: 3.LLM應用工程/5.Agent/README.md
- 實戰項目: 3.LLM應用工程/9.實戰/README.md
- 4. 更新 Blog:
- 4.相關的更新Blog/README.md
- 5. AI 研究前沿:
- 5.AI研究前沿_2024-2025/README.md
- 多模態 AI: 5.AI研究前沿_2024-2025/多模態AI/README.md
- AI Agent: 5.AI研究前沿_2024-2025/AI-Agent/README.md
- 6. DeepLearning.ai 短課程:
- 6.DeepLearning.ai短課程學習紀錄/README.md
- 9. 面試與職業:
- 9.面試準備與職業發展/README.md
- 面試題庫: 9.面試準備與職業發展/面試題庫/README.md
- 資源:
- 學習資源: RESOURCES.md
- 貢獻指南: CONTRIBUTING.md
- 更新日誌: CHANGELOG.md
- 標籤索引: tags.md