AttributeError: module 'tensorflow_probability.python.bijectors.bijector' has no attribute 'AutoCompositeTensorBijector'
时间: 2024-06-19 13:04:17 浏览: 187
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是因为tensorflow_probability的版本问题导致的。在较旧的版本中,'tensorflow_probability.python.bijectors.bijector'模块中没有'AutoCompositeTensorBijector'属性。建议您更新tensorflow_probability到最新版本,可以使用以下命令进行更新:
pip install --upgrade tensorflow-probability
如果您已经安装了tensorflow_probability,但仍然遇到此错误,请检查您的安装版本是否过旧。
阅读全文