Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 (python3.6)

输入如下代码,会出现红色提示:python import tensorflow as tf a=tf.constant([[1.0,2.0]]) b=tf.constant([[3.0],[4.0]]) result=tf.matmul(a,b) print(result) with tf.Session() as sess: print (sess.run(result)) 解决方
相关文章
相关标签/搜索