“Could not interpret optimizer identifier” error in Keras

后端 未结 14 1459
别跟我提以往
别跟我提以往 2021-02-03 19:47

I got this error when I tried to modify the learning rate parameter of SGD optimizer in Keras. Did I miss something in my codes or my Keras was not installed properly?

14条回答
  •  执念已碎
    2021-02-03 20:19

    I got the same error message and resolved this issue, in my case, by replacing the assignment of optimizer:

    optimizer=keras.optimizers.Adam
    

    with its instance instead of the class itself:

    optimizer=keras.optimizers.Adam()
    

提交回复
热议问题