自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

susandebug

厚积而薄发

  • 博客(15)
  • 资源 (5)
  • 收藏
  • 关注

原创 DeepLearningToolBox学习——SAE(stacked auto encoders )

下载地址:DeepLearningToolBoxSAE(stacked auto encoders )的结构如下:基本意思就是一个隐藏层的神经网络,输入输出都是x,属于无监督学习。test_example_SAE%% ex1 train a 100 hidden unit SDAE and use it to initialize a FFNN% Setup

2016-01-25 20:47:26 3407 7

原创 DeepLearningToolBox学习——DBN(Deep Belief Net )

下载地址:DeepLearningToolBox1. DBN基础知识DBN 是由多层 RBM 组成的一个神经网络,它既可以被看作一个生成模型,也可以当作判别模型,其训练过程是:使用非监督贪婪逐层方法去预训练获得权值。 训练过程: 1. 首先充分训练第一个 RBM; 2. 固定第一个 RBM 的权重和偏移量,然后使用其隐性神经元的状态,作为第二个

2016-01-25 20:21:19 7623 1

原创 DeepLearningToolBox学习——RBM(Restrict Boltzmann Machine)II

下载地址:DeepLearningToolBox     学习RBM代码之前,需要一些基本的RBM的知识。     网上有很多参考资料,我借鉴一篇写的很好的系列文章,看下来也差不多能看懂了,博客地址:http://blog.csdn.net/itplus/article/details/19168937 目录如下(一)预备知识(二)网络结构

2016-01-25 19:36:23 1201

原创 DeepLearningToolBox学习——RBM(Restrict Boltzmann Machine)

下载地址:DeepLearningToolBox     学习RBM代码之前,需要一些基本的RBM的知识。     网上有很多参考资料,我借鉴一篇写的很好的系列文章,看下来也差不多能看懂了,博客地址:http://blog.csdn.net/itplus/article/details/19168937 目录如下(一)预备知识(二)网络结构

2016-01-25 19:23:51 1510

原创 DeepLearningToolBox学习——NN(neural network)

经典的DeepLearningToolBox,将里面的模型和Andrew Ng的UFLDL tutorial 对应学习,收获不小。下载地址:DeepLearningToolBox神经网络模型,层与层之间全连接。1. test_example_NN%% ex1 vanilla neural netrand('state',0)nn = nnsetup([784 1

2016-01-25 17:19:10 12830 3

转载 深度学习( Deep Learning )资源库列表

PYTHON:★★★★★ 五星Theano – CPU/GPU 符号表示编译器in python (from LISA lab at University of Montreal)  相关资源:Deep Learning Tutorials – 使用Theano实现深度学习的示例 (from LISA lab at University of Montrea

2016-01-22 16:03:14 1108

转载 DBM、RBM资料汇总

1,经典文章Hinton, G. E., Osindero, S. and Teh, Y. W. A fast learning algorithm for deep belief nets. Neural Computation, vol 18, pp. 1527-1554, 2006.Hinton, G. E. To recognize shapes, first lear

2016-01-22 15:38:14 840

转载 AutoEncoder、RBM、DBM、DBN初探

转自牛人博客:http://blog.csdn.net/zouxy09/article/details/8775524AutoEncoder自动编码器        Deep Learning最简单的一种方法是利用人工神经网络的特点,人工神经网络(ANN)本身就是具有层次结构的系统,如果给定一个神经网络,我们假设其输出与输入是相同的,然后训练调整其参数,得到每一层中的权重。自然地,

2016-01-21 11:04:12 8125

原创 LeetCode题解——Longest Consecutive Sequence

Given an unsorted array of integers, find the length of the longest consecutive elements sequence.For example,Given [100, 4, 200, 1, 3, 2],The longest consecutive elements sequence is [1, 2, 3

2016-01-18 19:46:56 464

原创 LeetCode题解——Create Maximum Number

Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum number of length k  from digits of the two. The relative order of the digits from the same array mus

2016-01-16 11:24:25 3105

原创 LeetCode题解——Power of Three

Given an integer, write a function to determine if it is a power of three.Follow up:Could you do it without using any loop / recursion?Credits:Special thanks to @dietpepsi for adding thi

2016-01-08 18:31:17 1071

转载 寻找第K大的数的方法总结

寻找第K大的数的方法总结     今天看算法分析是,看到一个这样的问题,就是在一堆数据中查找到第k个大的值。    名称是:设计一组N个数,确定其中第k个最大值,这是一个选择问题,当然,解决这个问题的方法很多,本人在网上搜索了一番,查找到以下的方式,决定很好,推荐给大家。     所谓“第(前)k大数问题”指的是在长度为n(n>=k)的乱序数组中S找出从大到小顺序的第(前)k个数的问题

2016-01-08 11:03:54 847

原创 LeetCode题解——Compare Version Numbers

Compare two version numbers version1 and version2.If version1 > version2 return 1, if version1 version2 return -1, otherwise return 0.You may assume that the version strings are non-empty and co

2016-01-06 19:05:32 472

原创 LeetCode题解——wordBreak2

Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word.Return all such possible sentences.For example, givens = "

2016-01-06 18:19:09 424

原创 Leetcode题解——Word Break

Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.For example, givens = "leetcode",dict = ["leet"

2016-01-06 17:30:40 560

查找算法代码C++——包括顺序、二分、BST、哈希

用C++写的最全的查找算法,顺序查找,二分查找,BST查找,哈希查找,可用于学习查找算法

2015-06-26

数据挖掘概念与技术课后习题答案.pdf

数据挖掘概念与技术课后习题答案.pdf 全套 完整答案 英文版 考试必备

2015-05-24

cuda 作业 排序算法 sort

中科院 cuda 作业 排序算法 sort

2015-05-24

cuda 高性能计算作业 点乘 dot

中科院 高性能课程 cuda优化并行点乘

2015-05-24

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除