tensorflow / gan

Tooling for GANs in TensorFlow
Apache License 2.0
930 stars 247 forks source link

Added ESRGAN Example #47

Closed nivedwho closed 3 years ago

nivedwho commented 3 years ago

Added python script files for training and evaluating the ESRGAN model.

joel-shor commented 3 years ago

A few things:

1) Class names need to be capitalized, variables need to be lowercase. You made classnames lowercase, and they should be capitalized (hparams vs HParams)

2) Docstrings shouldn't start with spaces

3) Every file needs to have a docstring.

4) Docstrings need to end with periods.

5) Function docstrings need to start with a single line, ending with a period.