随笔分类 -  Awesome Tutorials

摘要:自然语言处理中的Attention Model:是什么及为什么 2017-07-13 张俊林 待字闺中 要是关注深度学习在自然语言处理方面的研究进展,我相信你一定听说过Attention Model(后文有时会简称AM模型)这个词。AM模型应该说是过去一年来NLP领域中的重要进展之一,在很多场景被证 阅读全文
posted @ 2017-07-20 09:09 AHU-WangXiao 阅读(382) 评论(0) 推荐(0)
摘要:大牛讲堂 | 算法工程师入门第二期-穆黎森讲增强学习 2017-07-13 HorizonRobotics 🤖小广告:去CVPR 2017的小伙伴,点我有惊喜! 编者按:地平线大牛讲堂算法工程师入门第二讲如期而至,本期地平线资深算法工程师、增强学习专家穆黎森将为大家带来增强学习简介,全文约1200 阅读全文
posted @ 2017-07-14 14:47 AHU-WangXiao 阅读(676) 评论(0) 推荐(0)
摘要:Attention in Long Short-Term Memory Recurrent Neural Networks by Jason Brownlee on June 30, 2017 in Deep Learning The Encoder-Decoder architecture is 阅读全文
posted @ 2017-07-01 19:04 AHU-WangXiao 阅读(697) 评论(0) 推荐(0)
摘要:NLP related basic knowledge with deep learning methods 2017-06-22 First things first >>>>>>>>>>>>>>>>>>>>>>>> Some great blogs: 1. https://github.com/ 阅读全文
posted @ 2017-06-26 16:27 AHU-WangXiao 阅读(340) 评论(0) 推荐(0)
摘要:Introductory guide to Generative Adversarial Networks (GANs) and their promise! Introduction Neural Networks have made great progress. They now recogn 阅读全文
posted @ 2017-06-19 17:16 AHU-WangXiao 阅读(678) 评论(0) 推荐(0)
摘要:研究|对偶学习:一种新的机器学习范式 this blog copy from: http://www.msra.cn/zh-cn/news/blogs/2016/12/dual-learning-20161207.aspx 秦涛 作者简介 秦涛博士,现任微软亚洲研究院主管研究员。他和他的小组的研究领 阅读全文
posted @ 2017-06-12 09:17 AHU-WangXiao 阅读(606) 评论(0) 推荐(0)
摘要:Tutorial: Generate BBox or Rectangle to locate the target obejct Reference: 1. http://blog.sina.com.cn/s/blog_4d633dc70100o0r0.html 阅读全文
posted @ 2017-06-02 22:37 AHU-WangXiao 阅读(256) 评论(0) 推荐(0)
摘要:Awesome Courses Introduction There is a lot of hidden treasure lying within university pages scattered across the internet. This list is an attempt to 阅读全文
posted @ 2017-05-09 13:46 AHU-WangXiao 阅读(1099) 评论(0) 推荐(0)
摘要:Learning Deep Learning with Keras Piotr Migdał - blog Projects Articles Publications Resume About Photos Projects Articles Publications Resume About P 阅读全文
posted @ 2017-05-03 21:02 AHU-WangXiao 阅读(1294) 评论(0) 推荐(0)
摘要:Recurrent Neural Network 2016年07月01日 Deep learning Deep learning 字数:24235 this blog from: http://jxgu.cc/blog/recent-advances-in-RNN.html References R 阅读全文
posted @ 2017-05-02 15:33 AHU-WangXiao 阅读(1445) 评论(0) 推荐(0)
摘要:Install and Compile MatConvNet: CNNs for MATLAB Deep Learning framework 2017-04-18 10:19:35 If you want to use matlab convnet, you just install accord 阅读全文
posted @ 2017-04-18 10:30 AHU-WangXiao 阅读(406) 评论(0) 推荐(0)
摘要:Latex 经常见到的问题和解决方法 2017-04-10 22:05:48 【资源下载】 1). Texlive 2021 下载地址:https://mirrors.sjtug.sjtu.edu.cn/ctan/systems/texlive/Images/ 2). AweSome LaTex: 阅读全文
posted @ 2017-04-10 22:07 AHU-WangXiao 阅读(12244) 评论(0) 推荐(2)
摘要:Speech and Natural Language Processing obtain from this link: https://github.com/edobashira/speech-language-processing A curated list of speech and na 阅读全文
posted @ 2017-04-07 09:26 AHU-WangXiao 阅读(536) 评论(0) 推荐(0)
摘要:干货 | 图解LSTM神经网络架构及其11种变体(附论文) 2016-10-02 机器之心 选自FastML 作者:Zygmunt Z. 机器之心编译 参与:老红、李亚洲 就像雨季后非洲大草原许多野生溪流分化成的湖泊和水洼,深度学习已经分化成了各种不同的专门架构。 并且,每个架构都会有一个图解,这里 阅读全文
posted @ 2017-03-26 19:02 AHU-WangXiao 阅读(2584) 评论(2) 推荐(0)
摘要:强化学习策略梯度方法之: REINFORCE 算法 (从原理到代码实现) 2018-04-01 15:15:42 最近在看policy gradient algorithm, 其中一种比较经典的算法当属:REINFORCE 算法,已经广泛的应用于各种计算机视觉任务当中。 【REINFORCE 算法原 阅读全文
posted @ 2017-03-26 16:04 AHU-WangXiao 阅读(19313) 评论(2) 推荐(6)
摘要:Evolution Strategies as a Scalable Alternative to Reinforcement Learning this blog from: https://blog.openai.com/evolution-strategies/ MARCH 24, 2017 阅读全文
posted @ 2017-03-25 09:28 AHU-WangXiao 阅读(583) 评论(0) 推荐(0)
摘要:Summary on deep learning framework Theano && Lasagne 2017-03-23 1. theano.function output = input ** 2 f = theano.function([input], output) print(f(3) 阅读全文
posted @ 2017-03-23 15:06 AHU-WangXiao 阅读(4722) 评论(0) 推荐(0)
摘要:Using convolutional neural nets to detect facial keypoints tutorial this blog from: http://danielnouri.org/notes/2014/12/17/using-convolutional-neural 阅读全文
posted @ 2017-03-22 18:59 AHU-WangXiao 阅读(612) 评论(0) 推荐(0)
摘要:Awesome Torch This blog from: A curated list of awesome Torch tutorials, projects and communities. Table of Contents Tutorials Model Zoo Recurrent Net 阅读全文
posted @ 2017-03-22 18:21 AHU-WangXiao 阅读(1104) 评论(0) 推荐(0)
摘要:一些RL的文献(及笔记) copy from: https://zhuanlan.zhihu.com/p/25770890 Introductions Introduction to reinforcement learningIndex of /rowan/files/rlICML Tutoria 阅读全文
posted @ 2017-03-19 09:38 AHU-WangXiao 阅读(1417) 评论(0) 推荐(0)