The following files and folders are present in this chapter:
- api/:
- model /:
- __init __.py: This file indicates that the parent folder of this file can be imported like a module.
- common.py: This contains common functions that are required for any GAN model.
- srgan.py: This contains functions that are required for developing the SRGAN model.
- weights/:
- gan_generator.h5: A pre-trained weights file for the model. Feel free to use this to quickly run and check out how the project works.
- data.py: Utility functions for downloading, extracting, and loading the images in the DIV2K dataset.
- flask_app.py: We will be using this file to create a server that will be deployed on DigitalOcean.
- train.py: The model training file. ...