瀏覽代碼

squeeze file structure

youchen 6 年之前
父節點
當前提交
20c7ffabb3
共有 50 個文件被更改,包括 17 次插入17 次删除
  1. 0 0
      MNIST_data/t10k-images-idx3-ubyte.gz
  2. 0 0
      MNIST_data/t10k-labels-idx1-ubyte.gz
  3. 0 0
      MNIST_data/train-images-idx3-ubyte.gz
  4. 0 0
      MNIST_data/train-labels-idx1-ubyte.gz
  5. 二進制
      mnist_number_recognition/images/mnist_accuracy_evaluation.png
  6. 1 1
      mnist_number_recognition/mnist_optimization.py
  7. 8 8
      mnist_number_recognition/model.ckpt.meda.json
  8. 二進制
      mnist_restructured/MNIST_data/t10k-images-idx3-ubyte.gz
  9. 二進制
      mnist_restructured/MNIST_data/t10k-labels-idx1-ubyte.gz
  10. 二進制
      mnist_restructured/MNIST_data/train-images-idx3-ubyte.gz
  11. 二進制
      mnist_restructured/MNIST_data/train-labels-idx1-ubyte.gz
  12. 2 2
      mnist_restructured/mnist_train.py
  13. 6 6
      mnist_restructured/model/checkpoint
  14. 二進制
      mnist_restructured/model/model.ckpt-17501.data-00000-of-00001
  15. 二進制
      mnist_restructured/model/model.ckpt-17501.index
  16. 二進制
      mnist_restructured/model/model.ckpt-49001.meta
  17. 二進制
      mnist_restructured/model/model.ckpt-20001.data-00000-of-00001
  18. 二進制
      mnist_restructured/model/model.ckpt-20001.index
  19. 二進制
      mnist_restructured/model/model.ckpt-37501.meta
  20. 二進制
      mnist_restructured/model/model.ckpt-22501.data-00000-of-00001
  21. 二進制
      mnist_restructured/model/model.ckpt-22501.index
  22. 二進制
      mnist_restructured/model/model.ckpt-45001.meta
  23. 二進制
      mnist_restructured/model/model.ckpt-25001.data-00000-of-00001
  24. 二進制
      mnist_restructured/model/model.ckpt-25001.index
  25. 二進制
      mnist_restructured/model/model.ckpt-46001.meta
  26. 二進制
      mnist_restructured/model/model.ckpt-27501.data-00000-of-00001
  27. 二進制
      mnist_restructured/model/model.ckpt-27501.index
  28. 二進制
      mnist_restructured/model/model.ckpt-48001.meta
  29. 二進制
      mnist_restructured/model/model.ckpt-37501.data-00000-of-00001
  30. 二進制
      mnist_restructured/model/model.ckpt-37501.index
  31. 二進制
      mnist_restructured/model/model.ckpt-40001.data-00000-of-00001
  32. 二進制
      mnist_restructured/model/model.ckpt-40001.index
  33. 二進制
      mnist_restructured/model/model.ckpt-40001.meta
  34. 二進制
      mnist_restructured/model/model.ckpt-42501.data-00000-of-00001
  35. 二進制
      mnist_restructured/model/model.ckpt-42501.index
  36. 二進制
      mnist_restructured/model/model.ckpt-42501.meta
  37. 二進制
      mnist_restructured/model/model.ckpt-45001.data-00000-of-00001
  38. 二進制
      mnist_restructured/model/model.ckpt-45001.index
  39. 二進制
      mnist_restructured/model/model.ckpt-46001.data-00000-of-00001
  40. 二進制
      mnist_restructured/model/model.ckpt-46001.index
  41. 二進制
      mnist_restructured/model/model.ckpt-47001.data-00000-of-00001
  42. 二進制
      mnist_restructured/model/model.ckpt-47001.index
  43. 二進制
      mnist_restructured/model/model.ckpt-47001.meta
  44. 二進制
      mnist_restructured/model/model.ckpt-47501.data-00000-of-00001
  45. 二進制
      mnist_restructured/model/model.ckpt-47501.index
  46. 二進制
      mnist_restructured/model/model.ckpt-47501.meta
  47. 二進制
      mnist_restructured/model/model.ckpt-48001.data-00000-of-00001
  48. 二進制
      mnist_restructured/model/model.ckpt-48001.index
  49. 二進制
      mnist_restructured/model/model.ckpt-49001.data-00000-of-00001
  50. 二進制
      mnist_restructured/model/model.ckpt-49001.index

mnist_number_recognition/MNIST_data/t10k-images-idx3-ubyte.gz → MNIST_data/t10k-images-idx3-ubyte.gz


mnist_number_recognition/MNIST_data/t10k-labels-idx1-ubyte.gz → MNIST_data/t10k-labels-idx1-ubyte.gz


mnist_number_recognition/MNIST_data/train-images-idx3-ubyte.gz → MNIST_data/train-images-idx3-ubyte.gz


mnist_number_recognition/MNIST_data/train-labels-idx1-ubyte.gz → MNIST_data/train-labels-idx1-ubyte.gz


二進制
mnist_number_recognition/images/mnist_accuracy_evaluation.png


+ 1 - 1
mnist_number_recognition/mnist_optimization.py

@@ -165,7 +165,7 @@ def train(mnist):
 
 
 def main(argv=None):
-    mnist = input_data.read_data_sets("MNIST_data", one_hot=True)
+    mnist = input_data.read_data_sets("../MNIST_data", one_hot=True)
     print "basic information of mnist dataset"
     print "mnist training data size: ", mnist.train.num_examples
     print "mnist validating data size: ", mnist.validation.num_examples

File diff suppressed because it is too large
+ 8 - 8
mnist_number_recognition/model.ckpt.meda.json


二進制
mnist_restructured/MNIST_data/t10k-images-idx3-ubyte.gz


二進制
mnist_restructured/MNIST_data/t10k-labels-idx1-ubyte.gz


二進制
mnist_restructured/MNIST_data/train-images-idx3-ubyte.gz


二進制
mnist_restructured/MNIST_data/train-labels-idx1-ubyte.gz


+ 2 - 2
mnist_restructured/mnist_train.py

@@ -12,13 +12,13 @@ BATCH_SIZE = 1000
 LEARNING_RATE_BASE = 0.8
 LEARNING_RATE_DECAY = 0.99
 REGULARIZATION_RATE = 0.0001
-TRAINING_STEPS = 50000
+TRAINING_STEPS = 30000
 MOVING_AVERAGE_DECAY = 0.99
 
 MODEL_SAVE_PATH = "model/"
 MODEL_NAME = "model.ckpt"
 
-
+# train a fully connected neural network
 def train(mnist):
     x = tf.placeholder(tf.float32, [None, mnist_inference.INPUT_NODE], name='x-input')
     y_ = tf.placeholder(tf.float32, [None, mnist_inference.OUTPUT_NODE], name='y-input')

+ 6 - 6
mnist_restructured/model/checkpoint

@@ -1,6 +1,6 @@
-model_checkpoint_path: "model.ckpt-47501"
-all_model_checkpoint_paths: "model.ckpt-37501"
-all_model_checkpoint_paths: "model.ckpt-40001"
-all_model_checkpoint_paths: "model.ckpt-42501"
-all_model_checkpoint_paths: "model.ckpt-45001"
-all_model_checkpoint_paths: "model.ckpt-47501"
+model_checkpoint_path: "model.ckpt-27501"
+all_model_checkpoint_paths: "model.ckpt-17501"
+all_model_checkpoint_paths: "model.ckpt-20001"
+all_model_checkpoint_paths: "model.ckpt-22501"
+all_model_checkpoint_paths: "model.ckpt-25001"
+all_model_checkpoint_paths: "model.ckpt-27501"

二進制
mnist_restructured/model/model.ckpt-17501.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-17501.index


二進制
mnist_restructured/model/model.ckpt-49001.meta


二進制
mnist_restructured/model/model.ckpt-20001.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-20001.index


二進制
mnist_restructured/model/model.ckpt-37501.meta


二進制
mnist_restructured/model/model.ckpt-22501.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-22501.index


二進制
mnist_restructured/model/model.ckpt-45001.meta


二進制
mnist_restructured/model/model.ckpt-25001.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-25001.index


二進制
mnist_restructured/model/model.ckpt-46001.meta


二進制
mnist_restructured/model/model.ckpt-27501.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-27501.index


二進制
mnist_restructured/model/model.ckpt-48001.meta


二進制
mnist_restructured/model/model.ckpt-37501.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-37501.index


二進制
mnist_restructured/model/model.ckpt-40001.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-40001.index


二進制
mnist_restructured/model/model.ckpt-40001.meta


二進制
mnist_restructured/model/model.ckpt-42501.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-42501.index


二進制
mnist_restructured/model/model.ckpt-42501.meta


二進制
mnist_restructured/model/model.ckpt-45001.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-45001.index


二進制
mnist_restructured/model/model.ckpt-46001.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-46001.index


二進制
mnist_restructured/model/model.ckpt-47001.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-47001.index


二進制
mnist_restructured/model/model.ckpt-47001.meta


二進制
mnist_restructured/model/model.ckpt-47501.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-47501.index


二進制
mnist_restructured/model/model.ckpt-47501.meta


二進制
mnist_restructured/model/model.ckpt-48001.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-48001.index


二進制
mnist_restructured/model/model.ckpt-49001.data-00000-of-00001


二進制
mnist_restructured/model/model.ckpt-49001.index