Tensorflow问题集合

错误信息:
InternalError (see above for traceback): Blas SGEMM launch failed
可能原因:
原因Tensorboard运行,导致Tensorflow无法启动运行(或者说是因为另外的tensorflow程序在运行,ref)

新版本更新步骤:
参考了一些博文(ref),都建议先删除原来版本,然后从新安装。步骤如下:

  • 删除原来版本的tensorflow(需要注意一点,如果使用的是gpu版本,名字应该使用tensorflow-gpu)
    pip uninstall tensorflow-gpu
  • 安装tensorflow(命令不变)
    pip install tensorflow-gpu
  • 版本检查
    tf.__version__

你可能感兴趣的:(Tensorflow问题集合)