- We first download the image
- Resize it for faster computation
url = 'https://nicolekessler.files.wordpress.com/2013/04/hellish_demons.jpg?w=1024'
def download(url, max_dim=None):
name = "demons.jpg"
image_path = tf.keras.utils.get_file(name, origin=url)