-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfeed.xml
347 lines (163 loc) · 7.92 KB
/
feed.xml
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
<feed xmlns="http://www.w3.org/2005/Atom">
<id>http://localhost:4000/</id>
<title>SIRLIS</title>
<subtitle>sirlis</subtitle>
<updated>2024-09-20T12:19:35+08:00</updated>
<author>
<name>sirlis</name>
<uri>http://localhost:4000/</uri>
</author>
<link rel="self" type="application/atom+xml" href="http://localhost:4000/feed.xml"/>
<link rel="alternate" type="text/html" hreflang="zh-CN"
href="http://localhost:4000/"/>
<generator uri="https://jekyllrb.com/" version="4.3.3">Jekyll</generator>
<rights> © 2024 sirlis </rights>
<icon>/assets/img/favicons/favicon.ico</icon>
<logo>/assets/img/favicons/favicon-96x96.png</logo>
<entry>
<title>模式识别(LDA和PCA)</title>
<link href="http://localhost:4000/posts/Pattern-Recognition-LDA&PCA/" rel="alternate" type="text/html" title="模式识别(LDA和PCA)" />
<published>2024-05-02T10:03:19+08:00</published>
<updated>2024-05-06T14:23:30+08:00</updated>
<id>http://localhost:4000/posts/Pattern-Recognition-LDA&PCA/</id>
<content src="http://localhost:4000/posts/Pattern-Recognition-LDA&PCA/" />
<author>
<name>sirlis</name>
</author>
<category term="Academic" />
<category term="Knowledge" />
<summary>
本文介绍了模式识别的特征选择与特征降维,着重介绍了线性判别分析(Linear Discriminant Analysis,LDA)和主成分分析法(Principal Component Analysis,PCA)。
1. 特征降维
2. 线性判别分析(LDA)
2.1. 瑞利商与广义瑞利商
2.2. 两类 LDA
2.3. 多类 LDA
2.4. LDA 的特点
3. 主成分分析(PCA)
3.1. 具体步骤
3.2. PCA 的特点
4. 参考文献
1. 特征降维
机器学习的很多算法复杂度和数据的维数有着密切关系,甚至与维数呈指数级关联。当数据的特征维度达到成千上万甚至几十万的规模时,机器学习的资源消耗是不可接受的,且有很多特...
</summary>
</entry>
<entry>
<title>模式识别(统计决策方法:贝叶斯决策)</title>
<link href="http://localhost:4000/posts/Pattern-Recognition-Bayes/" rel="alternate" type="text/html" title="模式识别(统计决策方法:贝叶斯决策)" />
<published>2024-03-12T21:22:19+08:00</published>
<updated>2024-08-09T13:13:13+08:00</updated>
<id>http://localhost:4000/posts/Pattern-Recognition-Bayes/</id>
<content src="http://localhost:4000/posts/Pattern-Recognition-Bayes/" />
<author>
<name>sirlis</name>
</author>
<category term="Academic" />
<category term="Knowledge" />
<summary>
本文介绍了模式识别的贝叶斯决策,包括贝叶斯公式、最小错误贝叶斯决策、最小风险贝叶斯决策。
1. 决策理论与方法
1.1. 基于先验概率的决策
1.2. 基于贝叶斯公式的决策
2. 最小错误贝叶斯决策
2.1. 决策规则
2.2. 类概率密度
2.3. 错误率分析
3. 最小风险贝叶斯决策
3.1. 举例说明
3.2. 损失函数(风险因子)
3.3. 决策步骤
4. 二分类错误率与ROC曲线
5. 参考文献
1. 决策理论与方法
解决模式识别问题的方法可归纳为基于知识的方法和基于数据的方法两大类。基于数据的模式识别方法的基础时统计模式识别,即依据统计学原理建立分类器,这事模式识...
</summary>
</entry>
<entry>
<title>模式识别(线性分类器)</title>
<link href="http://localhost:4000/posts/Pattern-Recognition-LInear-Classifier/" rel="alternate" type="text/html" title="模式识别(线性分类器)" />
<published>2024-03-03T14:25:19+08:00</published>
<updated>2024-05-05T00:03:19+08:00</updated>
<id>http://localhost:4000/posts/Pattern-Recognition-LInear-Classifier/</id>
<content src="http://localhost:4000/posts/Pattern-Recognition-LInear-Classifier/" />
<author>
<name>sirlis</name>
</author>
<category term="Academic" />
<category term="Knowledge" />
<summary>
本文介绍了模式识别的线性分类器,包括线性回归、最小二乘估计、Fisher 线性判别分析。
1. 引言
2. 线性回归与最小二乘估计
3. Fisher 线性判别分析
3.1. 投影
3.2. Fisher 投影
4. 参考文献
1. 引言
模式识别的目的是在特征空间中设法找到两类(或多类)之间的分界面。一方面,我们可以通过估计样本的概率模型,然后采用贝叶斯决策(最大后验估计)或者最大似然估计的策略来实现分类。但是很多情况下,建立样本的概率模型和准确估计样本的概率密度函数及其他模型参数并不是一件容易的事情。
实际上,估计概率密度函数也不是我们的目的。贝叶斯决策的策略分为两步,首先根据样本进行概率密度函数估计,然后再根据估计的概率密度函数求分类面。如果能直接根据样本求分类面,就可以省略对概率密度函数的估...
</summary>
</entry>
<entry>
<title>强化学习(策略梯度法)</title>
<link href="http://localhost:4000/posts/reinforcement-learning-Policy-Gradient/" rel="alternate" type="text/html" title="强化学习(策略梯度法)" />
<published>2023-11-27T16:43:19+08:00</published>
<updated>2024-01-01T20:28:20+08:00</updated>
<id>http://localhost:4000/posts/reinforcement-learning-Policy-Gradient/</id>
<content src="http://localhost:4000/posts/reinforcement-learning-Policy-Gradient/" />
<author>
<name>sirlis</name>
</author>
<category term="Academic" />
<category term="Knowledge" />
<summary>
本文介绍了强化学习的策略梯度法(Policy Gradient)。
1. 回顾
2. 策略梯度
2.1. 策略函数
2.2. 策略函数的分布形式
2.3. 策略梯度的概念
3. 策略梯度的计算
3.1. 基于累计收益的策略梯度
3.2. 基于初始状态价值的策略梯度
3.3. 策略梯度定理
4. 基于策略梯度的强化学习
4.1. REINFORCE
4.2. REINFORCE with baseline
4.3. Actor-Critic (related to V)
4.4. Actor-Critic (related to Q)
4.5. Advantage A...
</summary>
</entry>
<entry>
<title>如何清理 .git 文件夹来减小 github 仓库大小</title>
<link href="http://localhost:4000/posts/linux-reduce-repo-size-through-git-folder/" rel="alternate" type="text/html" title="如何清理 .git 文件夹来减小 github 仓库大小" />
<published>2023-09-18T13:58:19+08:00</published>
<updated>2024-04-10T12:51:22+08:00</updated>
<id>http://localhost:4000/posts/linux-reduce-repo-size-through-git-folder/</id>
<content src="http://localhost:4000/posts/linux-reduce-repo-size-through-git-folder/" />
<author>
<name>sirlis</name>
</author>
<category term="Knowledge" />
<summary>
本文介绍了如何清理github本地缓存文件夹来减小 github 仓库大小。
1. github
1.1. git 命令
1.2. github 桌面
1.3. .git 文件夹
2. .git 文件夹清理
2.1. Linux 环境命令行清理
2.2. 跨平台 BFG 工具清理
3. 参考文献
1. github
1.1. git 命令
1.2. github 桌面
1.3. .git 文件夹
git 是增量更新模式,所有改动都会保存在 .git 隐藏文件夹内。
.git 文件夹清理不会把仓库中已有的文件夹和里面的内容删除,会保留最新的一次提交,并且默认最近的一次提交是干净无误的提交。
2. .git 文件夹清理
2.1. Linu...
</summary>
</entry>
</feed>