TypeError: __init__() missing 1 required positional argument: 'units'

时间:2021-07-28 21:23:40   收藏:0   阅读:0

源代码:

x = Dense(output_dim=NB_CLASS, activation=softmax)(x)

错误提示:

技术图片

 

 修正:

x = Dense(uints=NB_CLASS, activation=softmax)(x)

代码运行成功。

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!