Python错误提示:TypeError: ‘module‘ object is not callable

错误解释: 'module’对象不可调用(callable)
错误原因: 调用类或函数时混淆了库和类

用一个例子来说明很容易就懂了

  1. 如图我建立了一个SimpleCNN的Python文件,写了一个SimpleCNN()的类
    Python错误提示:TypeError: ‘module‘ object is not callable_第1张图片
  2. 然后在Python Console里运行导入
    Python错误提示:TypeError: ‘module‘ object is not callable_第2张图片

错误操作
在我想调用SimpleCNN()时出了问题,并报错
Python错误提示:TypeError: ‘module‘ object is not callable_第3张图片


正确操作:
正确写法应该是:包名.类名
Python错误提示:TypeError: ‘module‘ object is not callable_第4张图片


你可能感兴趣的:(python,bug)