Project - Introduction to Neural Style Transfer using Deep Learning & TensorFlow 2 (Art Generation Project)

You are currently auditing this course.
5 / 18

Importing Modules

Let us begin by importing the necessary modules. We shall implement the project using Tensorflow 2.

INSTRUCTIONS
  • Import tensorflow as tf, and check its version.

    import << your code comes here >> as  << your code comes here >>
    print(tf.__version__)
    
  • Import import IPython.display as display.

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

    import << your code comes here >> as << your code come here >>
    
  • Import numpy as np.

    import << your code comes here >> as << your code comes here >>
    
  • Import import PIL.Image.

    import << your code comes here >>
    
  • Import time module.

    import << your code comes here >>
    
Get Hint See Answer

Loading comments...