Summary on deep learning framework --- Theano && Lasagne 2017-03-23 1. theano.function output = input ** 2  f = theano.function([input], output) print(f(3)) >> the output is: 3^2 = 9. 2.  verbose = 1 or 0, does it have any difference ?   so…
Summary on deep learning framework --- PyTorch  Updated on 2018-07-22 21:25:42  import osos.environ["CUDA_VISIBLE_DEVICES"]="4" 1. install the pytorch version 0.1.11  ## Version 0.1.11 ## python2.7 and cuda 8.0 sudo pip install http://…
 Summary on deep learning framework --- TensorFlow Updated on 2018-07-22 21:28:11 1. Check failed: s.ok() could not find cudnnCreate in cudnn DSO;  tensorflow/stream_executor/cuda/cuda_dnn.cc:221] Check failed: s.ok() could not find cudnnCreate in cu…
Summary on deep learning framework --- Torch7  2018-07-22 21:30:28 1. 尝试第一个 CNN 的 torch版本, 代码如下: -- We now have 5 steps left to do in training our first torch neural network -- 1. Load and normalize data -- 2. Define Neural Network -- 3. Define Loss…
Deep Learning framework --- MexNet 安装,测试,以及相关问题总结  一.安装:   参考博文:http://www.open-open.com/lib/view/open1448030000650.html  Note: gcc g++ 需要 4.8 版本. 二.…
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 according to the following tutorials: 1. Download and unzip the original source file from: http://www…
常用的deep learning frameworks 基本转自:http://www.codeceo.com/article/10-open-source-framework.html 1. Caffe 基于C++开发 2. Theano 大部分代码是使用CYthon开发的,主页有很详细的教程,在github上有Theano的软件包,另外还有一份pdf的tutorial 基于theano派生了许多的深度学习python软件包:Keras(documents).Lasagne(documents…
供大家相互交流和学习,本人水平有限,若有各种大小错误,还请巨牛大牛小牛微牛们立马拍砖,这样才能共同进步!若引用译文请注明出处http://www.cnblogs.com/charleshuang/. 本文译自:http://deeplearning.net/tutorial/lenet.html 文章中的代码截图不是很清晰,可以去上面的原文网址去查看. 1.动机 卷积神经网络(CNN)是多层感知机(MLP)的一个变种模型,它是从生物学概念中演化而来的.从Hubel和Wiesel早期对猫的视觉皮层…
关于更多的http://deeplearning.net/tutorial/的翻译还有学习笔记会陆续整理传到博客. 供大家相互交流和学习,本人水平有限,若有各种大小错误,还请巨牛大牛小牛微牛们立马拍砖,这样才能共同进步!若引用译文请注明出处http://www.cnblogs.com/charleshuang/. 下面.http://deeplearning.net/tutorial/mlp.html#mlp  的中文翻译.下面以PPT截图的方式给出,风格不好,还请见谅. 具体程序见 http:…
Machine and Deep Learning with Python Education Tutorials and courses Supervised learning superstitions cheat sheet Introduction to Deep Learning with Python How to implement a neural network How to build and run your first deep learning network Neur…