tensorflow
jyalpf
这个作者很懒,什么都没留下…
展开
-
tensorflow学习1
以前只用过keras,像稍微深入了解一下深度学习,开始学习tensorflow,先从最基本的搞起,希望能坚持下去。 第一个东西,很简单,主要是熟悉tensorflow的流程,包括怎么训练,损失函数、评价函数的定义,怎么保存模型,加载模型,输出结果等。 import tensorflow as tf tf.logging.set_verbosity(tf.log...原创 2018-12-14 10:07:28 · 112 阅读 · 0 评论 -
tensorflow学习2
上篇简单的梳理了tensorflow的流程,这次使用api同样对mnist做识别,很简单的结构,识别率也不高,简单的梳理一下api主要是estimator和layers的使用。代码记录一下。 import tensorflow as tf import matplotlib.pyplot as plt import numpy as np tf.logging.set_ver...原创 2018-12-14 16:05:54 · 146 阅读 · 1 评论 -
tensorflow学习4
利用layers和estimator api构建cnn进行mnist手写字体识别,带有注释。 import tensorflow as tf tf.logging.set_verbosity(tf.logging.ERROR) from tensorflow.examples.tutorials.mnist import input_data mnist = input_data.rea...原创 2018-12-21 10:35:40 · 129 阅读 · 0 评论 -
tensorflow学习3
Raw TensorFlow实现cnn,还是mnist数据集,模型训练加载一套,不过最后预测我只选了前200个,全部预测的话,我这渣本直接死机。 import tensorflow as tf tf.logging.set_verbosity(tf.logging.ERROR) from tensorflow.examples.tutorials.mnist import input...原创 2018-12-17 11:06:18 · 125 阅读 · 0 评论 -
tensorflow学习5
这篇主要是对lstm模型有个梳理,lstm一般用在时序数据或文本的处理上,不过这里仍然用其对mnist数据集分类。话不多说,上代码。 import tensorflow as tf tf.logging.set_verbosity(tf.logging.ERROR) from tensorflow.contrib import rnn import numpy as np from ten...原创 2019-01-03 21:35:51 · 115 阅读 · 1 评论