Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.65 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3. # MNIST 데이터를 다운로드 한다.
  4. # MAC OS에서 Certification Fail이 발생하면 터미널에 다음을 입력한다.
  5. # /Applications/Python 3.6/Install Certificates.command
  6. from tensorflow.examples.tutorials.mnist import input_data
  7. mnist = input_data.read_data_sets("MNIST_data/", one_hot=True)
  8.  
  9. # TensorFlow 라이브러리를 추가한다.
  10. import tensorflow as tf
  11.  
  12. # 변수들을 설정한다.
  13. x = tf.placeholder(tf.float32, [None, 784])
  14. W = tf.Variable(tf.zeros([784, 10]))
  15. b = tf.Variable(tf.zeros([10]))
  16.  
  17. # 차원이 다른 행렬을 큰 행렬의 크기로 늘려주는 브로드 캐스팅 기능 적용
  18. y = tf.matmul(x, W) + b
  19.  
  20. # cross-entropy 모델을 설정한다.
  21. y_ = tf.placeholder(tf.float32, [None, 10])
  22.  
  23. # 수학적으로 불안정한 계산이어서 tf.nn.softmax_cross_entropy_with_logits 함수로 대체
  24. # tf.reduce_mean(-tf.reduce_sum(y_ * tf.log(tf.nn.softmax(y)), reduction_indices=[1]))
  25. cross_entropy = tf.reduce_mean(tf.nn.softmax_cross_entropy_with_logits(labels=y_, logits=y))
  26. train_step = tf.train.GradientDescentOptimizer(0.5).minimize(cross_entropy)
  27.  
  28. # Gradient Descent로 모델을 학습한다.
  29. sess = tf.InteractiveSession()
  30. tf.global_variables_initializer().run()
  31.  
  32. for i in range(1000):
  33.     batch_xs, batch_ys = mnist.train.next_batch(100)
  34.     sess.run(train_step, feed_dict={x: batch_xs, y_: batch_ys})
  35.  
  36. # 학습된 모델이 얼마나 정확한지를 출력한다.
  37. correct_prediction = tf.equal(tf.argmax(y,1), tf.argmax(y_,1))
  38. accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))
  39. print(sess.run(accuracy, feed_dict={x: mnist.test.images, y_: mnist.test.labels}))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement