Keras import error Nadam

后端 未结 3 688
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-02 01:45

I am getting an import error when trying to import the Keras module Nadam:

>>> from keras.optimizers import Nadam
Traceback (most recent call last):         


        
3条回答
  •  猫巷女王i
    2020-12-02 02:13

    It could happen if you're using other version of python. Let's say, you have installed python globally with version 2.7.x, but when running your script, you're using python 3.x. In this case even you'll run python shell, you'll be able to import it, but when running concrete script which uses other version of python it wouldn't be possible.

提交回复
热议问题