I am trying to run my neural network in colab.research page, but I am still getting error AttributeError: module 'tensorflow' has no attribute 'optimizers'
at this line:
opt = tensorflow.optimizers.RMSprop(learning_rate=0.00001, decay=1e-6)
My importing part from the code:
import tensorflow
from tensorflow.keras.preprocessing.image import ImageDataGenerator
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense, Dropout, Activation, Flatten
from tensorflow.keras.layers import Conv2D, MaxPooling2D
from keras import optimizers
import os
Tensorflow version:
print(tensroflow.__version__) # 1.15.0