Skip to content
This repository was archived by the owner on Jan 2, 2021. It is now read-only.

Commit 3a0874d

Browse files
committed
Improve comments and documentation, add special thanks.
1 parent 410b0db commit 3a0874d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Pre-trained models are provided in the GitHub releases. Training your own is a
9494

9595
The easiest way to get up-and-running is to `install Docker <https://www.docker.com/>`_. Then, you should be able to download and run the pre-built image using the ``docker`` command line tool. Find out more about the ``alexjc/neural-enhance`` image on its `Docker Hub <https://hub.docker.com/r/alexjc/neural-enhance/>`_ page.
9696

97-
Here's the simplest way you can call the script using ``docker``, assuming you're familiar with using ``-v`` argument to mount folders you can use this directly to specify files to enhance:
97+
Here's the simplest way you can call the script using ``docker``, assuming you're familiar with using ``-v`` argument to mount folders (see `documentation <https://docs.docker.com/engine/tutorials/dockervolumes/#/mount-a-host-directory-as-a-data-volume>`_) you can use this directly to specify files to enhance:
9898

9999
.. code:: bash
100100
@@ -161,7 +161,9 @@ This code uses a combination of techniques from the following papers, as well as
161161

162162
Special thanks for their help and support in various ways:
163163

164+
* Roelof Pieters — Provided a rack of TitanX GPUs for training model variations on OpenImages dataset.
164165
* Eder Santana — Discussions, encouragement, and his ideas on `sub-pixel deconvolution <https://github.com/Tetrachrome/subpixel>`_.
166+
* Wenzhe Shi — Practical advice and feedback on training procedures for the super-resolution GAN [4].
165167
* Andrew Brock — This sub-pixel layer code is based on `his project repository <https://github.com/ajbrock/Neural-Photo-Editor>`_ using Lasagne.
166168
* Casper Kaae Sønderby — For suggesting a more stable alternative to sigmoid + log as GAN loss functions.
167169

enhance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333

3434
# Configure all options first so we can later custom-load other libraries (Theano) based on device specified by user.
35-
parser = argparse.ArgumentParser(description='Generate a new image by applying style onto a content image.',
35+
parser = argparse.ArgumentParser(description='Enhance a low-res image into high-def using neural networks.',
3636
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
3737
add_arg = parser.add_argument
3838
add_arg('files', nargs='*', default=[])

0 commit comments

Comments
 (0)