In this chapter, we will be working with the Facades dataset, which is available at the following link:
http://efrosgans.eecs.berkeley.edu/pix2pix/datasets/facades.tar.gz.
This dataset contains facade labels and ground truth facade images. A facade is generally the front side of a building, and facade labels are architectural labels of a facade image. We will learn more about facades after we download the dataset. Perform the following commands to download and extract the dataset:
- Download the dataset by executing the following commands:
# Before downloading the dataset navigate to data directorycd data# Download the datasetwget http://efrosgans.eecs.berkeley.edu/pix2pix/datasets/facades.tar.gz
- After downloading the ...