'module' object has no attribute 'computation'

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/bitcarmanlee/article/details/88605202

在使用tensorflow跑CNN模型的时候,发现报了如下异常:

AttributeError: 'module' object has no attribute 'computation'

经过一番搜索,发现可能跟dask这个包有关系。dask包可能版本太老,于是执行

pip install --upgrade dask

将dask升级到最新版本,搞定收工

猜你喜欢

转载自blog.csdn.net/bitcarmanlee/article/details/88605202