Enrollments Open for Advanced Certification Courses on Data Science, ML & AI by E&ICT Academy IIT Roorkee
Apply NowWe 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)
No hints are availble for this assesment
Answer is not availble for this assesment
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...