Keras import error Nadam

后端 未结 3 689
佛祖请我去吃肉
佛祖请我去吃肉 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:32

    If you can import something in one place but not another, it's definitely an issue with the import system. So, carefully check the relevant variables (sys.path, environment variable PYTHONPATH) and where the modules in each case are being imported from (sys.modules).

    For a more in-depth reading, I direct you to the Python import system docs and an overview of common traps in the system.

    You may also have an old version of Keras installed somewhere: Nadam is a fairly recent addition (2016-05), so this may be the cause for the "can import other optimizers but not this one" behaviour.

提交回复
热议问题