微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

'Tensorboard.util' has no attribute 'Retrier'

Here is a popular issue when you want to use tensorbard with your upgraded tensorflow and tensorboard. In general you will get this issue, when you have mismatch of your tensorflow and tensorboard versions, for example you upgrade tensorflow to 1.13, but not tensorboard, you will get an error like this "Module 'tensorboard.util' has no attribute 'Retrier'". To solve this issue just do the following steps, which helped me.

  1. pip uninstall tensorflow
  2. pip uninstall tensorboard 
  3. Make sure they are removed completely from all sources
  4. clean the caches (pip or conda)
  5. Reinstall tensorflow and tensorboard again (the version you prefer)

Here is some discussions

github: https://github.com/tensorflow/tensorboard/issues/1724

aipool: https://ai-pool.com/d/module__tensorboard_util__has_no_attribute__retrier_

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐