源代码:
x = Dense(output_dim=NB_CLASS, activation='softmax')(x)
错误提示:
修正:
x = Dense(uints=NB_CLASS, activation='softmax')(x)
代码运行成功。
源代码:
x = Dense(output_dim=NB_CLASS, activation='softmax')(x)
错误提示:
修正:
x = Dense(uints=NB_CLASS, activation='softmax')(x)
代码运行成功。
相关文章: