Login using Social Account
     Continue with GoogleLogin using your credentials
We are going to use the following modules for this exercise:
Import the following modules as instructed:
Import the following modules:
Import tensorflow
import << your code comes here >>
Import SGD
from tensorflow.keras.optimizers
from tensorflow.keras.optimizers import << your code comes here >>
Import Sequential
from tensorflow.keras.models
from tensorflow.keras.models import << your code comes here >>
Import VGG16
from tensorflow.keras.applications
from tensorflow.keras.applications import << your code comes here >>
Import Input, Dense, Dropout, GlobalAveragePooling2D
from tensorflow.keras.layers
from tensorflow.keras.layers import << your code comes here >>
Write the below code, to assign a seed value to NumPy and TensorFlow so as to make sure the output stable across runs:
np.random.seed(42)
tensorflow.random.set_seed(42)
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Loading comments...