Research
gjq246
这个作者很懒,什么都没留下…
展开
-
Deep Learning 4J 学习(二) MNIST(手写数字识别)
1.资源数据库下载 http://download.csdn.net/detail/gjq246/9794788 下载后,放到某个文件夹中,比如:D:\doc 2.创建MyMnistDataFetcher类(对官网的例子简单做了修改,不用去网络下载数据,直接读取本地路径的数据库) 该类主要是继承了BaseDataFetcher ,重点是fetch方法,实现了如何批量抽取样本数据原创 2017-03-27 08:54:45 · 2171 阅读 · 0 评论 -
优化器、激活函数、评价函数
http://c.colabug.com/thread-1847614-1-1.html一、优化器机器学习包括两部分内容,一部分是如何构建模型,另一部分就是如何训练模型。训练模型就是通过挑选最佳的优化器去训练出最优的模型。LSE-最小二乘法 按偏差平方和最小的原则选取拟合曲线,并且采取二项式方程为拟合曲线的方法,称为最小二乘法。 它通过最小化误差转载 2017-06-22 17:54:27 · 2167 阅读 · 0 评论 -
人工神经网络中的activation function的作用
转自:https://www.zhihu.com/question/29021768附:双曲函数类似于常见的(也叫圆函数的)三角函数。基本双曲函数是双曲正弦"sinh",双曲余弦"cosh",从它们导出双曲正切"tanh"sigmod函数:Relu函数:综合:@作者:约翰曰不约转载 2017-06-22 17:18:49 · 979 阅读 · 0 评论 -
TensorFlow安装
1.下载ubuntu http://cn.ubuntu.com/download/ Ubuntu 16.04 LTS(长期支持)版本,已经集成了python 2.创建虚拟机安装系统 3.安装python-pip和python-dev $ sudo apt-get install python-pip python-dev 4.安装tensorflow,1.0版本以上支持原创 2017-04-25 22:09:07 · 2373 阅读 · 0 评论 -
Ubuntu中安装Visual Studio Code
gjq@gjq-virtual-machine:~$ sudo apt install ubuntu-make gjq@gjq-virtual-machine:~$ umake web visual-studio-code 启动器如果看不到,可以到安装目录下找到code文件,双击启动 卸载Visual Studio Code,同样使用Ubuntu Mak原创 2017-04-25 22:54:45 · 3881 阅读 · 0 评论 -
Ubuntu 16.04 安装 Anaconda
1.下载(建议用迅雷下载比较快,然后复制到虚拟机上) 到官网http://continuum.io/downloads下载anaconda。 根据系统也python版本选择对应的安装包。 2.进入下载目录,打开终端,根据版本输入安装命令: Python 3.6 version bash Anaconda3-4.3.1-Linux-x86_64.sh Python 2.7 ve原创 2017-04-27 11:56:51 · 56285 阅读 · 0 评论 -
tensorboard查看日志信息
1.输入命令: tensorboard --logdir="/home/tensorflow/log/batch" Starting TensorBoard 47 at http://0.0.0.0:6006 (Press CTRL+C to quit) 2.浏览器查看:原创 2017-04-27 22:38:01 · 6667 阅读 · 0 评论 -
Depends:libreoffice-base but it is not going to be installed
安装python-tk时一直报以下错误 The following packages have unmet dependencies: libreoffice : Depends: libreoffice-base but it is not going to be installed Depends: libreoffice-core (= 1:5.3.3~rc2-原创 2017-05-09 16:11:44 · 3141 阅读 · 0 评论 -
Keras中实现mnist神经网络训练与模型保存(采用LeNet-5模型)
需要安装cv2http://blog.csdn.net/gjq246/article/details/71554157安装模型图片导出模块udo pip install pydotsudo pip install graphvizpip install pydot-ngsudo apt-get install graphviz安装h5py的命令如下(模型原创 2017-05-13 11:12:00 · 5267 阅读 · 0 评论 -
Keras中实现模型加载与测试(以mnist为例)
需要安装cv2http://blog.csdn.net/gjq246/article/details/71554157安装h5py的命令如下(模型加载模块):sudo pip install cythonsudo apt-get install libhdf5-devsudo pip install h5py# -*- coding: UTF-8 -原创 2017-05-13 11:17:53 · 11954 阅读 · 1 评论 -
mnist数据集转成图片 Python 实现
请先安装好cv2http://blog.csdn.net/gjq246/article/details/71554157训练集和测试集分别放在两个文件夹中,文件名中用“-”分割答案和文件名# -*- coding: UTF-8 -*-#把mnist数据集转成图片做测试,图片更为通用import cv2 from keras.datasets import m原创 2017-05-13 10:54:42 · 3759 阅读 · 1 评论 -
ubuntu系统安装git以及基本命令
sudo apt install git git config --global user.email "-----@qq.com" git config --global user.name "-----" git init git add README.md git commit -m "first commit" git remo原创 2017-04-26 13:26:38 · 974 阅读 · 0 评论 -
deeplearning4j-deeplearning4j-0.7.2 源码编译
1.从github下载 https://github.com/deeplearning4j/deeplearning4j/releases 2.解压出来 打开eclipse,导入maven项目,选择解压后的根目录,就能导入完整的项目 3.跳过test 打开各个项目的pom.xml,补充或者加入 org.apache.原创 2017-03-06 21:18:46 · 1267 阅读 · 0 评论 -
Deep Learning 4J 学习(一) 异或例子
1.maven http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">原创 2017-03-17 23:48:06 · 1818 阅读 · 0 评论 -
DCGAN例子学习-MNIST 手写体数字生成
参考代码: https://github.com/FacelessManipulator/keras-dcgan/blob/master/dcgan.py 参考文章: https://www.leiphone.com/news/201703/Y5vnDSV9uIJIQzQm.html 生成对抗网络(Generative Adversarial Networks,GAN)最早由 Ian原创 2017-07-14 16:05:04 · 12675 阅读 · 3 评论