Project - Image Classification with Pre-trained Keras models

3 / 6

Importing the Modules

  • Let's begin by importing the necessary modules.
INSTRUCTIONS
  • Import numpy as np.

    import << your code comes here >> as << your code comes here >>
    
  • Import tensorflow as tf.

    import << your code comes here >> as << your code comes here >>
    
  • Import keras from tensorflow.

    from << your code comes here >>  import << your code comes here >>
    
  • Import matplotlib.pyplot as plt.

    import << your code comes here >> as << your code comes here >>
    
  • Set the random seed:

    np.random.seed(42)
    tf.random.set_seed(42)
    
Get Hint See Answer


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...