Advertisement
Guest User

Untitled

a guest
Nov 15th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. import numpy as np
  2. import matplotlib.pyplot as plt
  3. try:
  4. from scipy import misc
  5. except ImportError:
  6. !pip install scipy
  7. from scipy import misc
  8.  
  9. #train
  10. import tensorflow as tf
  11. import numpy as np
  12. import matplotlib.pyplot as plt
  13. try:
  14. from scipy import misc
  15. except ImportError:
  16. !pip install scipy
  17. from scipy import misc
  18.  
  19. training_size = 265
  20. img_size = 400*400
  21. training_data = np.empty(shape=(training_size,img_size ))
  22.  
  23. import glob
  24. i = 0
  25. for filename in glob.glob('D:/TensorPalms/Train/*.jpg'):
  26. image = misc.imread(filename)
  27. print(image.shape)
  28. training_data[i] = image.reshape(-1)
  29. #training_data[i] = image
  30.  
  31. i+=1
  32.  
  33.  
  34. #label
  35.  
  36.  
  37. a= [0,0,0,0,0,
  38. 1,1,1,1,1,
  39. 2,2,2,2,2,
  40. 3,3,3,3,3,
  41. 4,4,4,4,4,
  42. 5,5,5,5,5,
  43. 6,6,6,6,6,
  44. 7,7,7,7,7,
  45. 8,8,8,8,8,
  46. 9,9,9,9,9,
  47. 10,10,10,10,10,
  48. 11,11,11,11,11,
  49. 12,12,12,12,12,
  50. 13,13,13,13,13,
  51. 14,14,14,14,14,
  52. 15,15,15,15,15,
  53. 16,16,16,16,16,
  54. 17,17,17,17,17,
  55. 18,18,18,18,18,
  56. 19,19,19,19,19,
  57. 20,20,20,20,20,
  58. 21,21,21,21,21,
  59. 22,22,22,22,22,
  60. 23,23,23,23,23,
  61. 24,24,24,24,24,
  62. 25,25,25,25,25,
  63. 26,26,26,26,26,
  64. 27,27,27,27,27,
  65. 28,28,28,28,28,
  66. 29,29,29,29,29,
  67. 30,30,30,30,30,
  68. 31,31,31,31,31,
  69. 32,32,32,32,32,
  70. 33,33,33,33,33,
  71. 34,34,34,34,34,
  72. 35,35,35,35,35,
  73. 36,36,36,36,36,
  74. 37,37,37,37,37,
  75. 38,38,38,38,38,
  76. 39,39,39,39,39,
  77. 40,40,40,40,40,
  78. 41,41,41,41,41,
  79. 42,42,42,42,42,
  80. 43,43,43,43,43,
  81. 44,44,44,44,44,
  82. 45,45,45,45,45,
  83. 46,46,46,46,46,
  84. 47,47,47,47,47,
  85. 48,48,48,48,48,
  86. 49,49,49,49,49,
  87. 50,50,50,50,50,
  88. 51,51,51,51,51,
  89. 52,52,52,52,52,]
  90.  
  91.  
  92.  
  93. b = tf.one_hot(a,53)
  94. sess = tf.Session()
  95. sess.run(b)
  96.  
  97. print(b.shape)
  98.  
  99. from sklearn.preprocessing import OneHotEncoder
  100. training_label = OneHotEncoder(sparse=False).fit_transform(np.asarray(a).reshape(-1, 1))
  101. print(training_label)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement