Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.50 KB | None | 0 0
  1. Using TensorFlow backend.
  2. 2019-12-05 17:44:01.184008: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
  3. 2019-12-05 17:44:01.226280: I tensorflow/core/platform/profile_utils/cpu_utils.cc:94] CPU Frequency: 3408000000 Hz
  4. 2019-12-05 17:44:01.226696: I tensorflow/compiler/xla/service/service.cc:168] XLA service 0x55bb3ec74620 executing computations on platform Host. Devices:
  5. 2019-12-05 17:44:01.226710: I tensorflow/compiler/xla/service/service.cc:175]   StreamExecutor device (0): Host, Default Version
  6. Model: "model_1"
  7. _________________________________________________________________
  8. Layer (type)                 Output Shape              Param #  
  9. =================================================================
  10. input_1 (InputLayer)         (None, 1, 64, 64)         0        
  11. _________________________________________________________________
  12. conv2d_1 (Conv2D)            (None, 1, 64, 32)         100384    
  13. _________________________________________________________________
  14. max_pooling2d_1 (MaxPooling2 (None, 1, 32, 32)         0        
  15. _________________________________________________________________
  16. conv2d_2 (Conv2D)            (None, 1, 32, 32)         25632    
  17. _________________________________________________________________
  18. max_pooling2d_2 (MaxPooling2 (None, 1, 16, 32)         0        
  19. _________________________________________________________________
  20. conv2d_3 (Conv2D)            (None, 1, 16, 32)         9248      
  21. _________________________________________________________________
  22. max_pooling2d_3 (MaxPooling2 (None, 1, 8, 32)          0        
  23. _________________________________________________________________
  24. flatten_1 (Flatten)          (None, 256)               0        
  25. _________________________________________________________________
  26. dense_1 (Dense)              (None, 100)               25700    
  27. _________________________________________________________________
  28. dense_2 (Dense)              (None, 2048)              206848    
  29. _________________________________________________________________
  30. reshape_1 (Reshape)          (None, 32, 8, 8)          0        
  31. _________________________________________________________________
  32. conv2d_4 (Conv2D)            (None, 32, 8, 32)         2336      
  33. _________________________________________________________________
  34. up_sampling2d_1 (UpSampling2 (None, 64, 16, 32)        0        
  35. _________________________________________________________________
  36. conv2d_5 (Conv2D)            (None, 64, 16, 32)        25632    
  37. _________________________________________________________________
  38. up_sampling2d_2 (UpSampling2 (None, 128, 32, 32)       0        
  39. _________________________________________________________________
  40. conv2d_6 (Conv2D)            (None, 128, 32, 32)       50208    
  41. _________________________________________________________________
  42. up_sampling2d_3 (UpSampling2 (None, 256, 64, 32)       0        
  43. =================================================================
  44. Total params: 445,988
  45. Trainable params: 445,988
  46. Non-trainable params: 0
  47. _________________________________________________________________
  48. DRM_IOCTL_I915_GEM_APERTURE failed: Invalid argument
  49. Assuming 131072kB available aperture size.
  50. May lead to reduced performance or incorrect rendering.
  51. get chip id failed: -1 [22]
  52. param: 4, val: 0
  53. DRM_IOCTL_I915_GEM_APERTURE failed: Invalid argument
  54. Assuming 131072kB available aperture size.
  55. May lead to reduced performance or incorrect rendering.
  56. get chip id failed: -1 [22]
  57. param: 4, val: 0
  58. beignet-opencl-icd: no supported GPU found, this is probably the wrong opencl-icd package for this hardware
  59. (If you have multiple ICDs installed and OpenCL works, you can ignore this message)
  60. (60000, 1, 64, 64)
  61. (10000, 1, 64, 64)
  62. Traceback (most recent call last):
  63.   File "/home/bglima/RosWS/paper_ws/src/etc/convolutional_autoencoder.py", line 91, in <module>
  64.     validation_data=(x_test, x_test))
  65.   File "/home/bglima/.local/lib/python2.7/site-packages/keras/engine/training.py", line 1154, in fit
  66.     batch_size=batch_size)
  67.   File "/home/bglima/.local/lib/python2.7/site-packages/keras/engine/training.py", line 621, in _standardize_user_data
  68.     exception_prefix='target')
  69.   File "/home/bglima/.local/lib/python2.7/site-packages/keras/engine/training_utils.py", line 145, in standardize_input_data
  70.     str(data_shape))
  71. ValueError: Error when checking target: expected up_sampling2d_3 to have shape (256, 64, 32) but got array with shape (1, 64, 64)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement