CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 数据挖掘

文件名称:DeepLearning-master

  • 所属分类:
  • 标签属性:
  • 上传时间:
    2015-11-12
  • 文件大小:
    66.46kb
  • 已下载:
    1次
  • 提 供 者:
  • 相关连接:
  • 下载说明:
    别用迅雷下载,失败请重下,重下不扣分!

介绍说明--下载内容来自于网络,使用问题请自行百度



深度学习的概念源于人工神经网络的研究。含多隐层的多层感知器就是一种深度学习结构。深度学习通过组合低层特征形成更加抽象的高层表示属性类别或特征,以发现数据的分布式特征表示。[1]

深度学习的概念由Hinton等人于2006年提出。基于深信度网(DBN)提出非监督贪心逐层训练算法,为解决深层结构相关的优化难题带来希望,随后提出多层自动编码器深层结构。此外Lecun等人提出的卷积神经网络是第一个真正多层结构学习算法,它利用空间相对关系减少参数数目以提高训练性能。[1]

深度学习是机器学习研究中的一个新的领域,其动机在于建立、模拟人脑进行分析学习的神经网络,它模仿人脑的机制来解释数据,例如图像,声音和文本。

同机器学习方法一样,深度机器学习方法也有监督学习与无监督学习之分.不同的学习框架下建立的学习模型很是不同.例如,卷积神经网络(Convolutional neural networks,简称CNNs)就是一种深度的监督学习下的机器学习模型,而深度置信网(Deep Belief Nets,简称DBNs)就是一种无监督学习下的机器学习模型。

-Research on the concept of deep learning the artificial neural network. Multi hidden layer of multi-layer perceptron is a deep learning structure. Deep learning features a more abstract representation of a higher level representation of a feature class or feature to find data. [1]



Deep learning s concept by Hinton et al. In 2006. Based on the (DBN), a non supervised greedy layer by layer training algorithm is proposed to solve the problems of the deep structure. In addition, the convolutional neural network proposed by Lecun et al is the first real multi layer structure learning algorithm, which uses the relative relationship between the number of parameters to improve the training performance. [1]



Deep learning is a new field in machine learning research. The motivation is to establish and simulate the human brain to analyze the learning of neural network, which simulates the human brain mechanism to explain the data, such as image, sound and text.



Convolutional (neural) net
(系统自动生成,下载前可以参看下载内容)

下载文件列表

DeepLearning-master/
DeepLearning-master/.gitignore
DeepLearning-master/README.md
DeepLearning-master/c/
DeepLearning-master/c/DBN.c
DeepLearning-master/c/DBN.h
DeepLearning-master/c/HiddenLayer.h
DeepLearning-master/c/LogisticRegression.c
DeepLearning-master/c/LogisticRegression.h
DeepLearning-master/c/RBM.c
DeepLearning-master/c/RBM.h
DeepLearning-master/c/SdA.c
DeepLearning-master/c/SdA.h
DeepLearning-master/c/dA.c
DeepLearning-master/c/dA.h
DeepLearning-master/c/utils.h
DeepLearning-master/cpp/
DeepLearning-master/cpp/DBN.cpp
DeepLearning-master/cpp/DBN.h
DeepLearning-master/cpp/HiddenLayer.cpp
DeepLearning-master/cpp/HiddenLayer.h
DeepLearning-master/cpp/LogisticRegression.cpp
DeepLearning-master/cpp/LogisticRegression.h
DeepLearning-master/cpp/RBM.cpp
DeepLearning-master/cpp/RBM.h
DeepLearning-master/cpp/SdA.cpp
DeepLearning-master/cpp/SdA.h
DeepLearning-master/cpp/dA.cpp
DeepLearning-master/cpp/dA.h
DeepLearning-master/cpp/utils.cpp
DeepLearning-master/go/
DeepLearning-master/go/DBN.go
DeepLearning-master/go/HiddenLayer/
DeepLearning-master/go/HiddenLayer/HiddenLayer.go
DeepLearning-master/go/LogisticRegression.go
DeepLearning-master/go/LogisticRegression/
DeepLearning-master/go/LogisticRegression/LogisticRegression.go
DeepLearning-master/go/RBM.go
DeepLearning-master/go/RBM/
DeepLearning-master/go/RBM/RBM.go
DeepLearning-master/go/SdA.go
DeepLearning-master/go/dA.go
DeepLearning-master/go/dA/
DeepLearning-master/go/dA/dA.go
DeepLearning-master/go/utils/
DeepLearning-master/go/utils/utils.go
DeepLearning-master/java/
DeepLearning-master/java/.gitkeep
DeepLearning-master/java/src/
DeepLearning-master/java/src/DeepLearning/
DeepLearning-master/java/src/DeepLearning/DBN.java
DeepLearning-master/java/src/DeepLearning/HiddenLayer.java
DeepLearning-master/java/src/DeepLearning/LogisticRegression.java
DeepLearning-master/java/src/DeepLearning/RBM.java
DeepLearning-master/java/src/DeepLearning/SdA.java
DeepLearning-master/java/src/DeepLearning/dA.java
DeepLearning-master/java/src/DeepLearning/utils.java
DeepLearning-master/python/
DeepLearning-master/python/CDBN.py
DeepLearning-master/python/CRBM.py
DeepLearning-master/python/DBN.py
DeepLearning-master/python/Dropout.py
DeepLearning-master/python/HiddenLayer.py
DeepLearning-master/python/LogisticRegression.py
DeepLearning-master/python/MLP.py
DeepLearning-master/python/RBM.py
DeepLearning-master/python/SdA.py
DeepLearning-master/python/dA.py
DeepLearning-master/python/utils.py
DeepLearning-master/scala/
DeepLearning-master/scala/DBN.scala
DeepLearning-master/scala/HiddenLayer.scala
DeepLearning-master/scala/LogisticRegression.scala
DeepLearning-master/scala/RBM.scala
DeepLearning-master/scala/SdA.scala
DeepLearning-master/scala/dA.scala

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 搜珍网是交换下载平台,只提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度。更多...
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或换浏览器;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.

相关评论

暂无评论内容.

发表评论

*快速评论: 推荐 一般 有密码 和说明不符 不是源码或资料 文件不全 不能解压 纯粹是垃圾
*内  容:
*验 证 码:
搜珍网 www.dssz.com