tensorflow
北方的杨先生
声明:博文的编写,主要参考网上资料,并结合个人见解,仅供学习、交流使用,如有侵权,请联系博主删除,原创文章转载请注明出处。博主微信:wx_big。
展开
-
【TensorFlow问题】AttributeError:'module' object has no attribute 'mul'
原因:TensorFlow 发布的新版本的 API 修改了 tf.mul, tf.sub and tf.neg are deprecated in favor of tf.multiply, tf.subtract and tf.negative. 解决方法:使用时将 tf.mul 改成 tf.multiply 即可 其余的 tf.sub 和原创 2017-10-24 09:57:39 · 1412 阅读 · 0 评论 -
Tensorflow 错误001:CUDA_ERROR_OUT_OF_MEMORY
代码出现tensorflow.python.framework.errors_impl.InternalError,from device: CUDA_ERROR_OUT_OF_MEMORY 此文为解决机器学习中使用tensorflow,在运行代码出现上述报错情况 1.先运行nvidia-smi 检查GPU运行情况,若内存够用进入2 2.代码应作已下修改 import tensorflo...原创 2018-11-14 10:14:30 · 1335 阅读 · 0 评论