AttributeError: module 'math' has no attribute 'PI'. Did you mean: 'pi'?\
时间: 2023-10-29 10:05:09 浏览: 367
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是因为在使用tensorflow.compat.v1模块的时候,没有找到contrib属性。你可以尝试使用tensorflow.compat.v2模块,或者查看你的tensorflow版本是否支持contrib属性。关于具体解决seq_loss.py文件的问题,我需要更多的上下文信息才能给出具体的解决方案。
对于selenium.webdriver.support.expected_conditions模块的错误,它提示找不到invisibility_of_element属性。正确的属性名称应该是invisibility_of_element_located。你可以检查一下你的代码中是否存在拼写错误或者版本不匹配的问题。
关于AttributeError: module 'math' has no attribute 'PI'错误,它提示在math模块中没有名为PI的属性。正确的属性名称应该是pi。你可以尝试将PI改为小写的pi,这样应该能解决这个问题。
阅读全文