快活林资源网 Design By www.csstdc.com
我就废话不多说了,直接上代码吧!
tf.train.GradientDescentOptimizer(0.01).minimize(cross_entropy)
TensorFlow经过使用梯度下降法对损失函数中的变量进行修改值,默认修改tf.Variable(tf.zeros([784,10]))
为Variable的参数。
train_step = tf.train.GradientDescentOptimizer(0.01).minimize(cross_entropy,var_list=[w,b])
也可以使用var_list参数来定义更新那些参数的值
#导入Minst数据集 import input_data mnist = input_data.read_data_sets("data",one_hot=True) #导入tensorflow库 import tensorflow as tf #输入变量,把28*28的图片变成一维数组(丢失结构信息) x = tf.placeholder("float",[None,784]) #权重矩阵,把28*28=784的一维输入,变成0-9这10个数字的输出 w = tf.Variable(tf.zeros([784,10])) #偏置 b = tf.Variable(tf.zeros([10])) #核心运算,其实就是softmax(x*w+b) y = tf.nn.softmax(tf.matmul(x,w) + b) #这个是训练集的正确结果 y_ = tf.placeholder("float",[None,10]) #交叉熵,作为损失函数 cross_entropy = -tf.reduce_sum(y_ * tf.log(y)) #梯度下降算法,最小化交叉熵 train_step = tf.train.GradientDescentOptimizer(0.01).minimize(cross_entropy) #初始化,在run之前必须进行的 init = tf.initialize_all_variables() #创建session以便运算 sess = tf.Session() sess.run(init) #迭代1000次 for i in range(1000): #获取训练数据集的图片输入和正确表示数字 batch_xs, batch_ys = mnist.train.next_batch(100) #运行刚才建立的梯度下降算法,x赋值为图片输入,y_赋值为正确的表示数字 sess.run(train_step,feed_dict = {x:batch_xs, y_: batch_ys}) #tf.argmax获取最大值的索引。比较运算后的结果和本身结果是否相同。 #这步的结果应该是[1,1,1,1,1,1,1,1,0,1...........1,1,0,1]这种形式。 #1代表正确,0代表错误 correct_prediction = tf.equal(tf.argmax(y,1), tf.argmax(y_,1)) #tf.cast先将数据转换成float,防止求平均不准确。 #tf.reduce_mean由于只有一个参数,就是上面那个数组的平均值。 accuracy = tf.reduce_mean(tf.cast(correct_prediction,"float")) #输出 print(sess.run(accuracy,feed_dict={x:mnist.test.images,y_: mnist.test.labels}))
计算结果如下
"C:\Program Files\Anaconda3\python.exe" D:/pycharmprogram/tensorflow_learn/softmax_learn/softmax_learn.py Extracting data\train-images-idx3-ubyte.gz Extracting data\train-labels-idx1-ubyte.gz Extracting data\t10k-images-idx3-ubyte.gz Extracting data\t10k-labels-idx1-ubyte.gz WARNING:tensorflow:From C:\Program Files\Anaconda3\lib\site-packages\tensorflow\python\util\tf_should_use.py:175: initialize_all_variables (from tensorflow.python.ops.variables) is deprecated and will be removed after 2017-03-02. Instructions for updating: Use `tf.global_variables_initializer` instead. 2018-05-14 15:49:45.866600: W C:\tf_jenkins\home\workspace\rel-win\M\windows\PY\35\tensorflow\core\platform\cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX instructions, but these are available on your machine and could speed up CPU computations. 2018-05-14 15:49:45.866600: W C:\tf_jenkins\home\workspace\rel-win\M\windows\PY\35\tensorflow\core\platform\cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX2 instructions, but these are available on your machine and could speed up CPU computations. 0.9163 Process finished with exit code 0
如果限制,只更新参数W查看效果
"C:\Program Files\Anaconda3\python.exe" D:/pycharmprogram/tensorflow_learn/softmax_learn/softmax_learn.py Extracting data\train-images-idx3-ubyte.gz Extracting data\train-labels-idx1-ubyte.gz Extracting data\t10k-images-idx3-ubyte.gz Extracting data\t10k-labels-idx1-ubyte.gz WARNING:tensorflow:From C:\Program Files\Anaconda3\lib\site-packages\tensorflow\python\util\tf_should_use.py:175: initialize_all_variables (from tensorflow.python.ops.variables) is deprecated and will be removed after 2017-03-02. Instructions for updating: Use `tf.global_variables_initializer` instead. 2018-05-14 15:51:08.543600: W C:\tf_jenkins\home\workspace\rel-win\M\windows\PY\35\tensorflow\core\platform\cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX instructions, but these are available on your machine and could speed up CPU computations. 2018-05-14 15:51:08.544600: W C:\tf_jenkins\home\workspace\rel-win\M\windows\PY\35\tensorflow\core\platform\cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX2 instructions, but these are available on your machine and could speed up CPU computations. 0.9187 Process finished with exit code 0
可以看出只修改W对结果影响不大,如果设置只修改b
#导入Minst数据集 import input_data mnist = input_data.read_data_sets("data",one_hot=True) #导入tensorflow库 import tensorflow as tf #输入变量,把28*28的图片变成一维数组(丢失结构信息) x = tf.placeholder("float",[None,784]) #权重矩阵,把28*28=784的一维输入,变成0-9这10个数字的输出 w = tf.Variable(tf.zeros([784,10])) #偏置 b = tf.Variable(tf.zeros([10])) #核心运算,其实就是softmax(x*w+b) y = tf.nn.softmax(tf.matmul(x,w) + b) #这个是训练集的正确结果 y_ = tf.placeholder("float",[None,10]) #交叉熵,作为损失函数 cross_entropy = -tf.reduce_sum(y_ * tf.log(y)) #梯度下降算法,最小化交叉熵 train_step = tf.train.GradientDescentOptimizer(0.01).minimize(cross_entropy,var_list=[b]) #初始化,在run之前必须进行的 init = tf.initialize_all_variables() #创建session以便运算 sess = tf.Session() sess.run(init) #迭代1000次 for i in range(1000): #获取训练数据集的图片输入和正确表示数字 batch_xs, batch_ys = mnist.train.next_batch(100) #运行刚才建立的梯度下降算法,x赋值为图片输入,y_赋值为正确的表示数字 sess.run(train_step,feed_dict = {x:batch_xs, y_: batch_ys}) #tf.argmax获取最大值的索引。比较运算后的结果和本身结果是否相同。 #这步的结果应该是[1,1,1,1,1,1,1,1,0,1...........1,1,0,1]这种形式。 #1代表正确,0代表错误 correct_prediction = tf.equal(tf.argmax(y,1), tf.argmax(y_,1)) #tf.cast先将数据转换成float,防止求平均不准确。 #tf.reduce_mean由于只有一个参数,就是上面那个数组的平均值。 accuracy = tf.reduce_mean(tf.cast(correct_prediction,"float")) #输出 print(sess.run(accuracy,feed_dict={x:mnist.test.images,y_: mnist.test.labels}))
计算结果:
"C:\Program Files\Anaconda3\python.exe" D:/pycharmprogram/tensorflow_learn/softmax_learn/softmax_learn.py Extracting data\train-images-idx3-ubyte.gz Extracting data\train-labels-idx1-ubyte.gz Extracting data\t10k-images-idx3-ubyte.gz Extracting data\t10k-labels-idx1-ubyte.gz WARNING:tensorflow:From C:\Program Files\Anaconda3\lib\site-packages\tensorflow\python\util\tf_should_use.py:175: initialize_all_variables (from tensorflow.python.ops.variables) is deprecated and will be removed after 2017-03-02. Instructions for updating: Use `tf.global_variables_initializer` instead. 2018-05-14 15:52:04.483600: W C:\tf_jenkins\home\workspace\rel-win\M\windows\PY\35\tensorflow\core\platform\cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX instructions, but these are available on your machine and could speed up CPU computations. 2018-05-14 15:52:04.483600: W C:\tf_jenkins\home\workspace\rel-win\M\windows\PY\35\tensorflow\core\platform\cpu_feature_guard.cc:45] The TensorFlow library wasn't compiled to use AVX2 instructions, but these are available on your machine and could speed up CPU computations. 0.1135 Process finished with exit code 0
如果只更新b那么对效果影响很大。
以上这篇在Tensorflow中实现梯度下降法更新参数值就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
快活林资源网 Design By www.csstdc.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
快活林资源网 Design By www.csstdc.com
暂无评论...
P70系列延期,华为新旗舰将在下月发布
3月20日消息,近期博主@数码闲聊站 透露,原定三月份发布的华为新旗舰P70系列延期发布,预计4月份上市。
而博主@定焦数码 爆料,华为的P70系列在定位上已经超过了Mate60,成为了重要的旗舰系列之一。它肩负着重返影像领域顶尖的使命。那么这次P70会带来哪些令人惊艳的创新呢?
根据目前爆料的消息来看,华为P70系列将推出三个版本,其中P70和P70 Pro采用了三角形的摄像头模组设计,而P70 Art则采用了与上一代P60 Art相似的不规则形状设计。这样的外观是否好看见仁见智,但辨识度绝对拉满。
更新日志
2025年01月02日
2025年01月02日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]