Deep Learning framework --- MexNet 安装,测试,以及相关问题总结  一.安装:   参考博文:http://www.open-open.com/lib/view/open1448030000650.html  Note: gcc g++ 需要 4.8 版本. 二.…
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…
 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…
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…
背景 [作者:DeepLearningStack,阿里巴巴算法工程师,开源TensorFlow Contributor] 在分布式训练时,提高计算通信占比是提高计算加速比的有效手段,当网络通信优化到一定程度时,只有通过增加每个worker上的batch size来提升计算量,进而提高计算通信占比.然而一直以来Deep Learning模型在训练时对Batch Size的选择都是异常敏感的,通常的经验是Large Batch Size会使收敛性变差,而相对小一点的Batch Size才能收敛的更好…
常用的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…
OS:Mac Python:3.6 一.先安装Keras,再安装TensorFlow 1. 安装Keras Package Version---------- -------h5py 2.7.1 Keras 2.1.6 numpy 1.14.3 PyYAML 3.12 scipy 1.1.0 six 1.11.0 2. 安装TensorFlow Package Version ----------- -----------absl-py 0.2.1 astor 0.6.2 bleach 1.5.…
转自:机器学习(Machine Learning)&深度学习(Deep Learning)资料 <Brief History of Machine Learning> 介绍:这是一篇介绍机器学习历史的文章,介绍很全面,从感知机.神经网络.决策树.SVM.Adaboost到随机森林.Deep Learning. <Deep Learning in Neural Networks: An Overview> 介绍:这是瑞士人工智能实验室Jurgen Schmidhuber写的最…