This is how I imported the modules
from keras.layers import Conv2D, BatchNormalization, Activation
from keras.models import Model, Input
from keras import optimizer_v2
from keras.optimizer_v2 import adam
import keras.backend as K
But I'm getting this Error
I tried using adam = adam(learning_rate= 0.00001) but it doesn't work either

I tried the following steps and it worked
after specifying the exact path to the
adam.Adammodule it worked fine. Still, if anyone wants to add something can add.