Skip to content

Commit 793cb1d

Browse files
committed
t
1 parent eeeabed commit 793cb1d

6 files changed

+156
-138
lines changed

_layouts/post.html

+17-10
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,28 @@
22
layout: default
33
---
44
<div id="post">
5-
<h1 class="titlex"><a href='{{page.url}}'>{{page.title}}</a></h1>
6-
<span class='date'>{{page.date | date: "%Y-%m-%d"}}</span>
7-
<div class='body'>{{ content }}</div>
8-
<div align="center" class="donate"><p><img src="/images/donate.png" alt="" /></p>
9-
<p>您的打赏,是对我的鼓励</p>
10-
<p>请访问<a target="_blank" href="https://github.com/antkillerfarm/antkillerfarm.github.com/issues">这里</a>提交评论</p>
11-
</div>
5+
<h1 class="titlex"><a href='{{page.url}}'>{{page.title}}</a></h1>
6+
<span class='date'>{{page.date | date: "%Y-%m-%d"}}</span>
7+
<div class='body'>{{ content }}</div>
8+
<div align="center" class="donate">
9+
<p><img src="/images/donate.png" alt="" /></p>
10+
<p>您的打赏,是对我的鼓励</p>
11+
</div>
1212
</div>
1313

14+
<script src="https://utteranc.es/client.js"
15+
repo="antkillerfarm/antkillerfarm.github.com"
16+
issue-term="pathname"
17+
theme="github-light"
18+
crossorigin="anonymous"
19+
async>
20+
</script>
1421

1522
<div id="related">
1623
<h2>Recent Posts in {{ page.category }}</h2>
1724
<ul class="posts">
1825
{% for post in site.categories[page.category] limit:5 %}
19-
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
26+
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
2027
{% endfor %}
2128
</ul>
2229
</div>
@@ -25,7 +32,7 @@ <h2>Recent Posts in {{ page.category }}</h2>
2532
<h2>Recent Posts in All Blogs</h2>
2633
<ul class="posts">
2734
{% for post in site.related_posts limit:5 %}
28-
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
35+
<li><span>{{ post.date | date_to_string }}</span> &raquo; <a href="{{ post.url }}">{{ post.title }}</a></li>
2936
{% endfor %}
3037
</ul>
31-
</div>
38+
</div>

_posts/2018-1-27-Deep_Learning_34.markdown

+82-72
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,74 @@
11
---
22
layout: post
3-
title: 深度学习(三十四)——词向量进阶, 深度贝叶斯学习
3+
title: 深度学习(三十四)——词向量进阶
44
category: DL
55
---
66

77
* toc
88
{:toc}
99

10+
# Capsule(续)
11+
12+
https://jhui.github.io/2017/11/14/Matrix-Capsules-with-EM-routing-Capsule-Network/
13+
14+
“Understanding Matrix capsules with EM Routing (Based on Hinton's Capsule Networks)”
15+
16+
https://zhuanlan.zhihu.com/p/42864711
17+
18+
胶囊网络到底是什么东东?
19+
20+
https://zhuanlan.zhihu.com/p/32106577
21+
22+
酉变换与递归神经网络
23+
24+
https://github.com/freefuiiismyname/capsule-mrc
25+
26+
基于capsule的观点型阅读理解模型
27+
28+
https://mp.weixin.qq.com/s/cskdgsysD7R_FKChAKmlDg
29+
30+
利用Capsule重构过程,Hinton等人实现对抗样本的自动检测
31+
32+
https://mp.weixin.qq.com/s/7fBXMvT4eyZrKhPKQTAIZQ
33+
34+
你听说过胶囊网络吗?
35+
36+
https://www.cnblogs.com/CZiFan/p/9803067.html
37+
38+
CapsNet胶囊网络
39+
40+
https://mp.weixin.qq.com/s/F9SGZPZj6gup_nOVuDel6A
41+
42+
与胶囊网络异曲同工:Bengio等提出四元数循环神经网络
43+
44+
https://mp.weixin.qq.com/s/4o9XHGwx5lYsJ7YfUNHSoQ
45+
46+
百年老图难倒谷歌AI,网友:是鸭是兔?连我都不能确定
47+
48+
https://mp.weixin.qq.com/s/dN1p7nuv6xtnIsSuY73CcA
49+
50+
基于GNN,强于GNN:胶囊图神经网络的PyTorch实现
51+
52+
https://mp.weixin.qq.com/s/lcJcaiMtYXGVOwa_sVsVfA
53+
54+
Hinton老爷子CapsNet再升级,结合无监督,接近当前最佳效果
55+
56+
https://mp.weixin.qq.com/s/A0m3lkIBCTFf5bzTQlYbgQ
57+
58+
基于胶囊网络的计算机视觉应用
59+
60+
https://mp.weixin.qq.com/s/BqsFIUrVEVz5kOFh3W93gQ
61+
62+
胶囊网络升级新版本,推特2000+赞
63+
64+
https://zhuanlan.zhihu.com/p/106330900
65+
66+
解读-Stacked Capsule AutoEncoder-堆叠的胶囊自编码器
67+
68+
https://mp.weixin.qq.com/s/ubi1L1Zlh4yZqCjZnpD58w
69+
70+
Capsule Network深度解读
71+
1072
# 词向量进阶
1173

1274
## All is Embedding
@@ -309,92 +371,40 @@ https://mp.weixin.qq.com/s/k-Bgkh7Ff2g_CIpQfq47AA
309371

310372
自然语言处理中词向量表示算法概述
311373

312-
# 深度贝叶斯学习
313-
314-
https://mp.weixin.qq.com/s/4sDNUZiOiS6VH_oRSnW6HQ
315-
316-
牛津大学YARIN GAL《贝叶斯深度学习》入门教程,336页ppt
317-
318-
https://mp.weixin.qq.com/s/w_phnVwm13P8dU0Ks-b-YA
319-
320-
《贝叶斯深度学习: DL与Bayesian原理 》NeurIPS2019硬核教程
321-
322-
https://mp.weixin.qq.com/s/J_sbJb8i-O8CwhHvVyPv1w
323-
324-
《深度贝叶斯数据挖掘》,附257页PPT下载
325-
326-
https://mp.weixin.qq.com/s/cDqxmRVQCIqdM5oiUh82YQ
327-
328-
Yee Whye Teh:《贝叶斯深度学习与深度贝叶斯学习》
329-
330-
https://mp.weixin.qq.com/s/JZVl0kygVawdW8qflPps6g
331-
332-
《神经贝叶斯信息处理》教程,220页ppt,国立交通大学
333-
334-
https://mp.weixin.qq.com/s/Zk2YG-IJNhJxTBU8THSM-g
335-
336-
让DL可解释?这一份66页贝叶斯深度学习教程告诉你
337-
338-
https://mp.weixin.qq.com/s/-izo9VUdxN33pwVFGV_tjw
339-
340-
299页PPT带你回顾深度贝叶斯学习最新发展脉络
341-
342-
https://mp.weixin.qq.com/s/UiLyQKhIe2rDYiwPcqyqaw
343-
344-
可跟踪概率模型,209页最新教程
345-
346-
https://mp.weixin.qq.com/s/pHAbxeYBI2q6pUHNrAt1og
347-
348-
贝叶斯学习与未来人工智能
349-
350-
https://mp.weixin.qq.com/s/Zd4rFU7Lebr4zmzxThNyVw
351-
352-
详解珠算:清华大学开源的贝叶斯深度学习库
353-
354-
https://mp.weixin.qq.com/s/RpaOrngeXTKycLb3iCygZw
355-
356-
利用贝叶斯神经网络进行随机动力系统中的学习与策略搜索
357-
358-
https://github.com/bayesgroup/deepbayes-2018
359-
360-
Seminars DeepBayes Summer School 2018
361-
362-
https://mp.weixin.qq.com/s/WCRYppBLdl_M4etUChnfgw
363-
364-
PyMC3和Theano代码构建贝叶斯深度网络
374+
# 姿态/行为检测进阶
365375

366-
https://mp.weixin.qq.com/s/7mwJpQFWWXJ3dvTAwDFI7Q
376+
https://mp.weixin.qq.com/s/6HsL2B7p-XyvGWAb4SwALA
367377

368-
贝叶斯卷积神经网络:架起深度学习与统计学的桥梁
378+
图灵奖得主Geoffrey Hinton最新研究NASA:一种更好地学习三维模型动作的方法
369379

370-
https://mp.weixin.qq.com/s/2LkpuchuHs82Sxs5rD8bWA
380+
https://zhuanlan.zhihu.com/p/26460437
371381

372-
《深度贝叶斯与序列学习》,279页PPT带你知晓深度贝叶斯序列模型在NLP最新进展
382+
Video Analysis相关领域解读之Action Recognition(行为识别)
373383

374-
https://zhuanlan.zhihu.com/p/74573041
384+
https://zhuanlan.zhihu.com/p/26603387
375385

376-
针对推荐系统的深度贝叶斯多目标学习
386+
Video Analysis相关领域解读之Temporal Action Detection(时序行为检测)
377387

378-
https://mp.weixin.qq.com/s/b041h_hbHQYiXCiDHGaD5w
388+
https://zhuanlan.zhihu.com/p/26730181
379389

380-
深度贝叶斯自然语言处理,304页ppt带你了解最新研究进展
390+
Video Analysis相关领域介绍之Video Captioning(视频to文字描述)
381391

382-
https://zhuanlan.zhihu.com/p/77140176
392+
https://mp.weixin.qq.com/s/-HEYU_El8xysk8atHYx1Mg
383393

384-
构建贝叶斯深度学习分类器
394+
基于3D行人姿态和步态预测的神经网络模型
385395

386-
https://mp.weixin.qq.com/s/0e4GHNRCF9xKFELAZ4zRFA
396+
https://zhuanlan.zhihu.com/p/72561165
387397

388-
A simple tutorial for Bayesian neural network
398+
重新思考人体姿态估计 Rethinking Human Pose Estimation
389399

390-
https://mp.weixin.qq.com/s/NkRemHPRnEcEwbs5b-Mz9w
400+
https://mp.weixin.qq.com/s/8vdTlIe9LV88AVw9kAcVjA
391401

392-
贝叶斯编程,378页pdf,Bayesian Programming
402+
基于空间AdaIN的深度姿态迁移
393403

394-
https://mp.weixin.qq.com/s/DDg4HTp-APwEIul1ZaFFPQ
404+
https://zhuanlan.zhihu.com/p/129279351
395405

396-
最新《贝叶斯推断》教程,125页ppt与视频,DeepMind Shakir Mohamed博士
406+
X3D Facebook视频理解/行为识别新作
397407

398-
https://zhuanlan.zhihu.com/p/283633149
408+
https://zhuanlan.zhihu.com/p/149429010
399409

400-
Bayesian Deep Learning最新研究总结
410+
TAM: 针对动作识别的时序自适应模块

_posts/2018-8-26-Deep_Learning_44.markdown

+47-55
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: 深度学习(四十四)——多标签学习, 多模态学习
3+
title: 深度学习(四十四)——多标签学习, 多模态学习, 深度贝叶斯学习
44
category: DL
55
---
66

@@ -225,105 +225,97 @@ https://mp.weixin.qq.com/s/TFHS5lZYFwcjP_SC1dAckA
225225

226226
多模态信息如何嵌入推荐系统?RecSys2021《多模态推荐系统》教程
227227

228-
# Capsule+
228+
# 深度贝叶斯学习
229229

230-
https://jhui.github.io/2017/11/14/Matrix-Capsules-with-EM-routing-Capsule-Network/
230+
https://mp.weixin.qq.com/s/4sDNUZiOiS6VH_oRSnW6HQ
231231

232-
“Understanding Matrix capsules with EM Routing (Based on Hinton's Capsule Networks)”
232+
牛津大学YARIN GAL《贝叶斯深度学习》入门教程,336页ppt
233233

234-
https://zhuanlan.zhihu.com/p/42864711
234+
https://mp.weixin.qq.com/s/w_phnVwm13P8dU0Ks-b-YA
235235

236-
胶囊网络到底是什么东东?
236+
《贝叶斯深度学习: DL与Bayesian原理 》NeurIPS2019硬核教程
237237

238-
https://zhuanlan.zhihu.com/p/32106577
238+
https://mp.weixin.qq.com/s/J_sbJb8i-O8CwhHvVyPv1w
239239

240-
酉变换与递归神经网络
240+
《深度贝叶斯数据挖掘》,附257页PPT下载
241241

242-
https://github.com/freefuiiismyname/capsule-mrc
242+
https://mp.weixin.qq.com/s/cDqxmRVQCIqdM5oiUh82YQ
243243

244-
基于capsule的观点型阅读理解模型
244+
Yee Whye Teh:《贝叶斯深度学习与深度贝叶斯学习》
245245

246-
https://mp.weixin.qq.com/s/cskdgsysD7R_FKChAKmlDg
246+
https://mp.weixin.qq.com/s/JZVl0kygVawdW8qflPps6g
247247

248-
利用Capsule重构过程,Hinton等人实现对抗样本的自动检测
248+
《神经贝叶斯信息处理》教程,220页ppt,国立交通大学
249249

250-
https://mp.weixin.qq.com/s/7fBXMvT4eyZrKhPKQTAIZQ
250+
https://mp.weixin.qq.com/s/Zk2YG-IJNhJxTBU8THSM-g
251251

252-
你听说过胶囊网络吗?
252+
让DL可解释?这一份66页贝叶斯深度学习教程告诉你
253253

254-
https://www.cnblogs.com/CZiFan/p/9803067.html
254+
https://mp.weixin.qq.com/s/-izo9VUdxN33pwVFGV_tjw
255255

256-
CapsNet胶囊网络
256+
299页PPT带你回顾深度贝叶斯学习最新发展脉络
257257

258-
https://mp.weixin.qq.com/s/F9SGZPZj6gup_nOVuDel6A
258+
https://mp.weixin.qq.com/s/UiLyQKhIe2rDYiwPcqyqaw
259259

260-
与胶囊网络异曲同工:Bengio等提出四元数循环神经网络
260+
可跟踪概率模型,209页最新教程
261261

262-
https://mp.weixin.qq.com/s/4o9XHGwx5lYsJ7YfUNHSoQ
262+
https://mp.weixin.qq.com/s/pHAbxeYBI2q6pUHNrAt1og
263263

264-
百年老图难倒谷歌AI,网友:是鸭是兔?连我都不能确定
264+
贝叶斯学习与未来人工智能
265265

266-
https://mp.weixin.qq.com/s/dN1p7nuv6xtnIsSuY73CcA
266+
https://mp.weixin.qq.com/s/Zd4rFU7Lebr4zmzxThNyVw
267267

268-
基于GNN,强于GNN:胶囊图神经网络的PyTorch实现
268+
详解珠算:清华大学开源的贝叶斯深度学习库
269269

270-
https://mp.weixin.qq.com/s/lcJcaiMtYXGVOwa_sVsVfA
270+
https://mp.weixin.qq.com/s/RpaOrngeXTKycLb3iCygZw
271271

272-
Hinton老爷子CapsNet再升级,结合无监督,接近当前最佳效果
272+
利用贝叶斯神经网络进行随机动力系统中的学习与策略搜索
273273

274-
https://mp.weixin.qq.com/s/A0m3lkIBCTFf5bzTQlYbgQ
274+
https://github.com/bayesgroup/deepbayes-2018
275275

276-
基于胶囊网络的计算机视觉应用
276+
Seminars DeepBayes Summer School 2018
277277

278-
https://mp.weixin.qq.com/s/BqsFIUrVEVz5kOFh3W93gQ
278+
https://mp.weixin.qq.com/s/WCRYppBLdl_M4etUChnfgw
279279

280-
胶囊网络升级新版本,推特2000+赞
280+
PyMC3和Theano代码构建贝叶斯深度网络
281281

282-
https://zhuanlan.zhihu.com/p/106330900
282+
https://mp.weixin.qq.com/s/7mwJpQFWWXJ3dvTAwDFI7Q
283283

284-
解读-Stacked Capsule AutoEncoder-堆叠的胶囊自编码器
284+
贝叶斯卷积神经网络:架起深度学习与统计学的桥梁
285285

286-
https://mp.weixin.qq.com/s/ubi1L1Zlh4yZqCjZnpD58w
286+
https://mp.weixin.qq.com/s/2LkpuchuHs82Sxs5rD8bWA
287287

288-
Capsule Network深度解读
288+
《深度贝叶斯与序列学习》,279页PPT带你知晓深度贝叶斯序列模型在NLP最新进展
289289

290-
# 姿态/行为检测进阶+
291-
292-
https://mp.weixin.qq.com/s/6HsL2B7p-XyvGWAb4SwALA
293-
294-
图灵奖得主Geoffrey Hinton最新研究NASA:一种更好地学习三维模型动作的方法
290+
https://zhuanlan.zhihu.com/p/74573041
295291

296-
https://zhuanlan.zhihu.com/p/26460437
292+
针对推荐系统的深度贝叶斯多目标学习
297293

298-
Video Analysis相关领域解读之Action Recognition(行为识别)
294+
https://mp.weixin.qq.com/s/b041h_hbHQYiXCiDHGaD5w
299295

300-
https://zhuanlan.zhihu.com/p/26603387
296+
深度贝叶斯自然语言处理,304页ppt带你了解最新研究进展
301297

302-
Video Analysis相关领域解读之Temporal Action Detection(时序行为检测)
298+
https://zhuanlan.zhihu.com/p/77140176
303299

304-
https://zhuanlan.zhihu.com/p/26730181
300+
构建贝叶斯深度学习分类器
305301

306-
Video Analysis相关领域介绍之Video Captioning(视频to文字描述)
302+
https://mp.weixin.qq.com/s/0e4GHNRCF9xKFELAZ4zRFA
307303

308-
https://mp.weixin.qq.com/s/-HEYU_El8xysk8atHYx1Mg
304+
A simple tutorial for Bayesian neural network
309305

310-
基于3D行人姿态和步态预测的神经网络模型
306+
https://mp.weixin.qq.com/s/NkRemHPRnEcEwbs5b-Mz9w
311307

312-
https://zhuanlan.zhihu.com/p/72561165
308+
贝叶斯编程,378页pdf,Bayesian Programming
313309

314-
重新思考人体姿态估计 Rethinking Human Pose Estimation
310+
https://mp.weixin.qq.com/s/DDg4HTp-APwEIul1ZaFFPQ
315311

316-
https://mp.weixin.qq.com/s/8vdTlIe9LV88AVw9kAcVjA
312+
最新《贝叶斯推断》教程,125页ppt与视频,DeepMind Shakir Mohamed博士
317313

318-
基于空间AdaIN的深度姿态迁移
314+
https://zhuanlan.zhihu.com/p/283633149
319315

320-
https://zhuanlan.zhihu.com/p/129279351
316+
Bayesian Deep Learning最新研究总结
321317

322-
X3D Facebook视频理解/行为识别新作
323-
324-
https://zhuanlan.zhihu.com/p/149429010
325-
326-
TAM: 针对动作识别的时序自适应模块
318+
# 姿态/行为检测进阶+
327319

328320
https://mp.weixin.qq.com/s/skCOaKf9kRABTX7hkdjGXA
329321

0 commit comments

Comments
 (0)