The generator uses the U-NET architecture in the pseudocode we introduced previously. This recipe is going to cover the practical side of implementing that network.Â
Code implementation – generator
Getting ready
Spot check! Make sure you have the following files in your working directory:
├── docker
│ ├── build.sh
│ ├── clean.sh
│ └── Dockerfile
├── README.md
├── run.sh
└── src
| ├── generator.py
Don't pass this step until you've completed the previous recipes and added the generator.py file to your working directory...