-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
195 lines (186 loc) · 7.96 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
site_name: Xionghaha
site_author: xionghaha
repo_url: https://github.com/Honei/xionghaha
copyright: "Copyright ©; 2024 - now | xionghaha "
theme:
features: # 功能
- announce.dismiss # 可以叉掉公告的功能
- content.action.edit # 编辑按钮,似乎没啥用
- content.action.view # 查看按钮,似乎没啥用
- content.code.annotate # 代码注释,具体不清楚
- content.code.copy # 复制代码按钮
# - content.code.select # 选择代码按钮
# - content.tabs.link # 链接标签
- content.tooltips # 不太清楚呢这个
# - header.autohide # 自动隐藏header
- navigation.expand # 默认展开导航栏
- navigation.footer # 底部导航栏
- navigation.indexes # 索引按钮可以直接触发文件,而不是只能点击其下属选项浏览,这个功能可以给对应的section提供很好的预览和导航功能
# - navigation.instant # 瞬间加载 - 如果这个开着,那么语言切换后就会跳转至首页,所以我关掉了
- navigation.instant.prefetch # 预加载
- navigation.instant.progress # 进度条
- navigation.path # 导航路径, 目前好像没啥用
# - navigation.prune # 只构建可见的页面
# - navigation.sections # 导航栏的section
- navigation.tabs # 顶级索引被作为tab
- navigation.tabs.sticky # tab始终可见
- navigation.top # 开启顶部导航栏
- navigation.tracking # 导航栏跟踪
- search.highlight # 搜索高亮
- search.share # 搜索分享
- search.suggest # 搜索建议
name: 'material'
language: 'zh'
palette:
- media: "(prefers-color-scheme)"
scheme: slate
primary: black
accent: indigo
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: black
accent: indigo
plugins:
- tags
- blog
- i18n:
docs_structure: suffix
languages: # 多语言配置 - 需要小心一点
- locale: en
default: false # 默认语言
name: English
build: true # 是否构建
# site_name: Infinity
- locale: zh
name: 简体中文
build: true
default: true
nav_translations: # 导航栏翻译,不可以有缩进
home: 首页
about: 关于
hardware: 硬件
basic: 基础
introduction: 介绍
datasets: 数据集
tod: 任务式对话
todo: 待办
rewrite: 多轮改写
utf8-unicode: 字符编码
inference: 模型推理
implemetion: 实现
speech_and_language_processing: 语音与语言处理
speech: 语音
asr: 语音识别
- open-in-new-tab
- search
- autolinks
nav:
- home:
- "index.md"
- about: "./home/about.md"
- Getting started:
- tutorials:
- blog/index.md
- blogs:
- "基础": blog/blogs/basic.md
- datasets:
- tod: "./datasets/tod.md"
- SFT:
- "Lima": "./datasets/sft/lima.md"
- hardware:
- basic: "./hardware/基础.md"
- tokenizer:
- 引言: "./tokenizer/tokenizer入门.md"
- utf8-unicode: "./tokenizer/utf8_unicode.md"
- introduction: "./tokenizer/introduction.md"
- implemetion: "./tokenizer/tokenizer实现.md"
- BPE算法: "./tokenizer/bpe.md"
- rewrite:
- introduction: "./rewrite/introduction.md"
- onnx:
- introduction:
- ONNX: "./onnx/introduction.md"
- Python处理ONNX: "./onnx/onnx_with_python.md"
- API接口:
- proto定义: "./onnx/api_proto.md"
- inference:
- introduction: "./inference/introduction.md"
- vllm:
- 开始:
- 安装: "./inference/vllm/getting_started/安装.md"
- speech_and_language_processing:
- 正则表达式文本规整与编辑距离:
- jsgf: "./speech_and_language_processing/jsgf/jsgf.md"
# - blogs:
# - "基础": blog/blogs/basic.md
- RAG:
- 回复生成:
- 问题: "./rag/generation/question.md"
- llama-index:
- 学习:
- 加载和提取:
- 加载数据(提取): "./rag/llama_index/learn/构建RAG的流程/加载和提取数据.md"
- LlamaHub注册中心: "./rag/llama_index/learn/构建RAG的流程/LlamaIndex注册中心.md"
- 组件指南:
- 文件加载:
- 引言: "./rag/llama_index/components_guides/文件加载/引言.md"
- 文档和节点:
- 引言: "./rag/llama_index/components_guides/文件加载/文档和节点/引言.md"
- 节点使用: "./rag/llama_index/components_guides/文件加载/文档和节点/节点使用.md"
- 元数据提取: "./rag/llama_index/components_guides/文件加载/文档和节点/元数据提取.md"
- 节点解析文本解析:
- 节点解析使用模式: "./rag/llama_index/components_guides/节点解析文档切分/节点解析模块.md"
- 索引:
- 引言: "./rag/llama_index/components_guides/索引/引言.md"
- 索引入门指南: "./rag/llama_index/components_guides/索引/索引入门指南.md"
- 向量索引: "./rag/llama_index/components_guides/索引/向量索引.md"
- 属性图索引: "./rag/llama_index/components_guides/索引/属性图索引.md"
- 文档管理: "./rag/llama_index/components_guides/索引/文档管理.md"
- 元数据提取: "./rag/llama_index/components_guides/索引/元数据提取.md"
- 查询:
- 引言: "./rag/llama_index/components_guides/查询/引言.md"
- 结构化输出:
- 引言: "./rag/llama_index/components_guides/查询/结构化输出/引言.md"
- 响应合成: "./rag/llama_index/components_guides/查询/结构化输出/响应合成.md"
- 结构化输出简单指南: "./rag/llama_index/components_guides/查询/结构化输出/结构化输出的简单指南.md"
- huggingface:
- datasets:
- DatasetDict类: "./huggingface/datasets/DatasetDict类.md"
- speech:
- asr:
- 引言: "./speech/asr/引言.md"
- 论文翻译:
- 大模型预训练数据集:
- RedPajama an Open Dataset for Training Large Language Models: "论文翻译/大模型预训练数据集/redpajama/RedPajama_an_Open_Dataset_for_Training_Large_Language_Models.md"
- 大模型:
- Root Mean Square Layer Normalization: "论文翻译/大模型/rmsnorm/root_mean_square_layer_normalization.md"
- LLaMA Open and Efficient Foundation Language Models: "论文翻译/大模型/llama/LLaMA_Open_and_Efficient_Foundation_Language_Models.md"
- DeepSeek LLM Scaling Open-Source Language Models with Longtermism: "论文翻译/大模型/deepseekllm/DeepSeek_LLM_Scaling_Open_Source_Language_Models_with_Longtermism.md"
- DeepSeek-R1 Incentivizing Reasoning Capability in LLMs via Reinforcement Learning: "论文翻译/大模型/deepseek_r1/DeepSeek_R1_Incentivizing_Reasoning_Capability_in_LLMs_via_Reinforcement_Learning.md"
- todo:
- todo: "./todo/todo.md"
markdown_extensions:
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true #代码块行号锚链接,默认false
use_pygments: true #在构建期间使用Pygments或在浏览器中使用 JavaScript 语法高亮器进行高亮显示,默认true
auto_title: true #自动为所有代码块添加标题,显示正在使用的语言的名称,默认false
linenums: true #向所有代码块添加行号,默认false
linenums_style: pymdownx-inline #三种添加行号的方法,建议table或pymdownx-inline。默认table
- pymdownx.superfences
- admonition
- attr_list
- md_in_html
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.details
- tables
- markdown_grid_tables
extra_javascript:
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml.js