TensorFlow
我是干勾鱼
最重要的,追随自己的心。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
TensorFlow基础学习——TensorFlow里“滑动平均模型”中“影子变量”的理解
在神经元网络中,梯度下降算法是用来优化反向传播算法中的参数的取值的。但是梯度下降算法有两个问题:1.优化过程可能得到的是局部最优。 2.计算时间太长。为了加速训练过程,一般使用随机梯度下降算法(stochatic gradient descent)。而在使用随机梯度下降算法训练神经元网络的时候,又经常通过滑动平均模型来提高最终模型在测试数据上的表现。TensorFlow中提供了tf....原创 2018-06-23 19:58:53 · 2364 阅读 · 6 评论 -
TensorFlow基础学习——Ubuntu16.04环境下搭建TensorFlow
1 安装pipsudo apt-get install python-pip python-dev2 按照TensorFlowUbuntu/Linux 64-bit,Python 2.7环境:sudo pip install --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.9.0-c...原创 2018-10-19 14:11:29 · 542 阅读 · 0 评论 -
TensorFlow基础学习——TensorFlow中tf.argmax()函数的作用
简单来说,tf.argmax()函数的作用就是返回最大的那个数值所在的下标。比如:import tensorflow as tfimport numpy as np A = [[1,3,4,5,6]]B = [[1,3,4], [2,4,1]] with tf.Session() as sess: print(sess.run(tf.argmax(A, 1))) p...原创 2018-10-23 16:30:58 · 1310 阅读 · 0 评论 -
TensorFlow基础学习——tf.control_dependencies()函数用法
转载请注明出处:http://blog.csdn.net/dongdong9223/article/details/83574333本文出自【我是干勾鱼的博客】Ingredient:Python:Python 3.6.6(Python Downloads)tf.control_dependencies()函数是用来控制计算流图的,也就是给图中的某些计算指定顺序。有的时候我们想要指定...原创 2018-10-31 09:47:38 · 5652 阅读 · 0 评论 -
TensorFlow基础学习——“Only call `sparse_softmax_cross_entropy_with_logits` with named arguments”错误的解决
转载请注明出处:http://blog.csdn.net/dongdong9223/article/details/83789592本文出自【我是干勾鱼的博客】Ingredient:Python:Python 3.6.6(Python Downloads)Virtualenv: pip install virtualenvVirtualenvwrapper: pip in...原创 2018-11-06 16:41:05 · 1156 阅读 · 0 评论 -
TensorFlow基础学习——使用tf.train.Saver类保存模型信息
转载请注明出处:http://blog.csdn.net/dongdong9223/article/details/83574333本文出自【我是干勾鱼的博客】Ingredient:Python:Python 3.6.6(Python Downloads)在TensorFlow中,tf.train.Saver类用来保存模型。值得注意的是,在TensorFlow中的变量是保存在于Se...原创 2018-11-02 15:20:56 · 1103 阅读 · 0 评论
分享