标签:tensorflow
During handling of the above exception, another exception occurred: 深度机器学习遇到的bug
2018-04-13 23:06:58.664369: W T:\src\github\tensorflow\tensorflow\core\common_runtime\bfc_allocator.cc:279] ************************************************************************……
ValueError: Trying to share variable discriminator/d_h4_lin/Matrix, but specified shape (4608, 1) and found shape (18432, 1).
ValueError: Trying to share variable discriminator/d_h4_lin/Matrix, but specified shape (4608, 1) and found shape (18432, 1).Traceback (most recent call last): File "mai……
[已解决]Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX2
Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX AVX22018-04-09 11:04:23.472874: I C:\tf_jenkins\workspace\rel-win\M\windows\PY\36\tensorflo……
TensorFlow CPU切换到GPU,CPU/GPU互换
TensorFlow CPU切换到GPU,CPU/GPU互换with tf.Session() as ses: with tf.device("/gpu:1"): matrix1=tf.constant([[3.,3.]]) matrix2=tf.constant([[2.],[2.]])……
AttributeError: module ‘tensorflow’ has no attribute ‘mul’
AttributeError: module ‘tensorflow‘ has no attribute ‘mul’tensorflow升级到1.0后新版本,tf.mul已经在新版本中被移除,请使用 tf.multiply 代替……