'module' object has no attribute 'mul'

在实验 tensorflow 基础的线性回归时,报了一个 AttributeError:'module' object has no attribute 'mul',如下所示:

'module' object has no attribute 'mul'_第1张图片
'module' object has no attribute 'mul'

经过研究,确认该问题为 tensorflow 版本升级导致。升级后,原有的 tensorflow.mul( ) 更新为 tensorflow.multiply( ) 接口,并将原有接口取消,故报出不存在 mul 的 AttributeError。修改如下:

'module' object has no attribute 'mul'_第2张图片
tensorflow.multiply( )

修改后成功跑通,如下所示:

'module' object has no attribute 'mul'_第3张图片
成功运行

你可能感兴趣的:('module' object has no attribute 'mul')