在运行一个unet时,出现以下错误:
TypeError: _init_subclassed_network() got an unexpected keyword argument 'input'解决将model = Model(input = inputs, output = conv10)改成model=Model(inputs,conv10)就可以了。

参考:
https://blog.csdn.net/ccbrid/article/details/78788307

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-19
  • 2021-11-19
  • 2022-03-07
  • 2021-12-02
  • 2021-06-28
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案