报错:
if not tf.io.gfile.exists(logdir):
return getattr(load_once(self), attr_name)
…
AttributeError: module ‘tensorflow’ has no attribute ‘io’
解决:
1、有介绍说tensorboard与tensorflow-tensorboard有冲突,删除
tensorboard-plugin-wit等与tensorboard相关。操作后未解决。
2、由于是pytorch直接使用tensorboard,未见有什么地方显示调用tensorflow,经1操作后依然报同样错误。进入tf.io.gfile.exists源码,发现tf()函数说这个函数等同于import tensorflow as tf,所以使用tensorboard还是需要搭配tensorflow。原版本为tensorflow1.13升到tensorflow2.0后错误排除。
AttributeError: module ‘tensorflow‘ has no attribute ‘io‘
最新推荐文章于 2024-03-18 17:33:27 发布