Deep Learning Tutorials

Deep Learning is a new area of Machine Learning research, which has been introduced with the objective of moving Machine Learning closer to one of its original goals: Artificial Intelligence. See these course notes for a brief introduction to Machine Learning for AI and an introduction to Deep Learning algorithms.

Deep Learning is about learning multiple levels of representation and abstraction that help to make sense of data such as images, sound, and text. For more about deep learning algorithms, see for example:

The tutorials presented here will introduce you to some of the most important deep learning algorithms and will also show you how to run them using Theano. Theano is a python library that makes writing deep learning models easy, and gives the option of training them on a GPU.

The algorithm tutorials have some prerequisites. You should know some python, and be familiar with numpy. Since this tutorial is about using Theano, you should read over the Theano basic tutorial first. Once you’ve done that, read through our Getting Started chapter – it introduces the notation, and [downloadable] datasets used in the algorithm tutorials, and the way we do optimization by stochastic gradient descent.

The purely supervised learning algorithms are meant to be read in order:

  1. Logistic Regression - using Theano for something simple
  2. Multilayer perceptron - introduction to layers
  3. Deep Convolutional Network - a simplified version of LeNet5

The unsupervised and semi-supervised learning algorithms can be read in any order (the auto-encoders can be read independently of the RBM/DBN thread):

Building towards including the mcRBM model, we have a new tutorial on sampling from energy models:

  • HMC Sampling - hybrid (aka Hamiltonian) Monte-Carlo sampling with scan()
Building towards including the Contractive auto-encoders tutorial, we have the code for now:
Recurrent neural networks with word embeddings and context window:
LSTM network for sentiment analysis:
Energy-based recurrent neural network (RNN-RBM):

Note that the tutorials here are all compatible with Python 2 and 3, with the exception of Modeling and generating sequences of polyphonic music with the RNN-RBM which is only available for Python 2.

from: http://deeplearning.net/tutorial/

最新文章

  1. 【读fastclick源码有感】彻底解决tap“点透”,提升移动端点击响应速度
  2. eclipse设置及快捷键
  3. MVC中的自定义控件——分页
  4. Linux下升级python
  5. 使用事务操作SQLite数据库
  6. jquery插件开发规范
  7. python自定义日志函数测试
  8. tomcat 设置默认编码格式
  9. Javascript基础Function
  10. 浅谈 js 正则字面量 与 new RegExp 执行效率
  11. 微信公众号平台接口开发:基础支持,获取access_token
  12. 《javascript设计模式与开发实践》阅读笔记(12)—— 享元模式
  13. Makefile常用函数总结
  14. 我的第一个微信小程序
  15. SpringBoot整合Mybatis注解版---update出现org.apache.ibatis.binding.BindingException: Parameter 'XXX' not found. Available parameters are [arg1, arg0, param1, param2]
  16. BZOJ 3261 最大异或和(算竞进阶习题)
  17. day75 form 组件(对form表单进行输入值校验的一种方式)
  18. JS数组分组
  19. 【ZooKeeper】单机伪集群搭建(适用于mac)
  20. Spring+Logback的集成总结

热门文章

  1. anaconda不错的
  2. GUC-2 原子性
  3. 【LOJ】#2280. 「FJOI2017」矩阵填数
  4. 使用gradle建立java application
  5. 【笔试题】Java 继承知识点检测
  6. POJ 3752 字母旋转游戏
  7. Anaconda 安装 OpenCV 遇到的问题
  8. javascript 中关于function中的prototype
  9. go chapter 9 - 反射
  10. Mybatis源码分析之Mapper的创建和获取