Received this error after running model.compile:
NameError Traceback (most recent call last)
in 1 # Get the untrained model ----> 2 model = create_model() 3 4 # Train the model 5 # Note that this may take some time.
in create_model() 20 21 —> 22 model.compile(optimizer= RMSprop(learning_rate=1e-4), 23 loss=‘binary_crossentropy’, 24 metrics=[‘accuracy’])
NameError: name ‘RMSprop’ is not defined
How can “RMSprop” not be defined?