Machine Learning-AttributeError: ‘BioCAnnotation‘ object has no attribute ‘get_total_location‘解决

关于Pytorch, Tensorflow等等的环境配置,可以查看这个专栏哦
环境配置(Pytorch, Tensorflow, Linux, etc.)

Machine Learning-AttributeError: ‘BioCAnnotation’ object has no attribute 'get_total_location’解决

简单来说,就是在现在版本的negbio这个库里面,貌似是已经没有get_total_location这个函数了,你可以使用total.span来代替它,注意是没有括号的哦!
也就是这样

location = ann.get_total_location()
改为
location = ann.total_span

那么如果还是没有解决的话,欢迎在评论区一起讨论自己遇到的问题哦

你可能感兴趣的:(Bug,Free,python,人工智能,机器学习,深度学习,nlp)