久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

sotmax-regresson

 雪柳花明 2017-03-15


[python] view plain copy
在CODE上查看代碼片派生到我的代碼片
  1. #!/usr/bin/env python  
  2. # coding=utf-8  
  3.   
  4. import tensorflow as tf  
  5. import input_mnist  
  6.   
  7. mnist=input_mnist.read_data_sets("mnist-data/",one_hot=True)  
  8.   
  9. print mnist.train.images.shape  
  10. print mnist.train.labels.shape  
  11. print mnist.test.images.shape  
  12. print mnist.test.labels.shape  
  13.   
  14. #Create the model  
  15. W=tf.Variable(tf.zeros([784,10]))  
  16. b=tf.Variable(tf.zeros([10]))  
  17. x=tf.placeholder("float",[None,784])  
  18. y=tf.nn.softmax(tf.matmul(x,W)+b)  
  19. y_=tf.placeholder("float",[None,10])  
  20.   
  21. #Define loss and optimizer  
  22. cross_entropy=tf.reduce_mean(-tf.reduce_sum(y_*tf.log(y),reduction_indices=[1]))  
  23. train_step=tf.train.GradientDescentOptimizer(0.5).minimize(cross_entropy)  
  24.   
  25. init=tf.initialize_all_variables()  
  26.   
  27. sess=tf.Session()  
  28. sess.run(init)  
  29. #Train   
  30. for i in xrange(10000):  
  31.     batch_xs,batch_ys=mnist.train.next_batch(100)  
  32.     sess.run(train_step, feed_dict={x:batch_xs, y_:batch_ys})  
  33.   
  34. #Test trained model  
  35. correct_prediction=tf.equal(tf.arg_max(y,1),tf.arg_max(y_,1))  
  36. accuracy=tf.reduce_mean(tf.cast(correct_prediction,tf.float32))  
  37. print(sess.run(accuracy, feed_dict={x:mnist.test.images,y_:mnist.test.labels}))  











    本站是提供個(gè)人知識管理的網(wǎng)絡(luò)存儲空間,,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn),。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,,請點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多