This is a docker implementation of jcjohnson neural-style solution.
This docker container allows you to easily run complicated neural networks with any of your images. Just install this docker container, run one command and get result. No configuration required.
Latest version available on github https://github.com/ffedoroff/neural-style and docker-hub https://hub.docker.com/r/ffedoroff/neural-style/
This is a torch implementation of the paper A Neural Algorithm of Artistic Style by Leon A. Gatys, Alexander S. Ecker, and Matthias Bethge.
The paper presents an algorithm for combining the content of one image with the style of another image using convolutional neural networks. Here's an example that maps the artistic style of The Starry Night onto a night-time photograph of the Stanford campus:
Applying the style of different images to the same content image gives interesting results. Here we reproduce Figure 2 from the paper, which renders a photograph of the Tubingen in Germany in a variety of styles:
Here are the results of applying the style of various pieces of artwork to this photograph of the golden gate bridge:
Install docker using that instructions
docker pull ffedoroff/neural-style
You should create folder on local computer for your source and style images. For example:
mkdir ~/prism/01/
You should put images into that folder.
For example style.jpg
and source.jpg
.
Then you should run docker container connected to your local folder with lua script, and after 4-7 hours of processing magic happened.
docker run -v ~/prism/01:/out -i -t ffedoroff/neural-style th neural_style.lua -gpu -1 \
-style_image style.jpg -content_image source.jpg
You can check results in your local ~/prism/01/
folder
If you close console windows, the process will terminate. So if you want to run it in background, add -d
parameter.
You can also run as much instances as you want. But point it into different local folders.
docker run -v ~/prism/01:/out -i -d -t ffedoroff/neural-style th neural_style.lua -gpu -1 \
-style_image style.jpg -content_image source.jpg
docker run -v ~/prism/02:/out -i -d -t ffedoroff/neural-style th neural_style.lua -gpu -1 \
-style_image style.jpg -content_image source.jpg
docker run -v ~/prism/03:/out -i -d -t ffedoroff/neural-style th neural_style.lua -gpu -1 \
-style_image style.jpg -content_image source.jpg
To use multiple style images, pass a comma-separated list like this:
-style_image starry_night.jpg,the_scream.jpg
.
Note that paths to images should not contain the ~
character to represent your home directory; you should instead use a relative
path or a full absolute path.
Options:
-image_size
: Maximum side length (in pixels) of of the generated image. Default is 512.-style_blend_weights
: The weight for blending the style of multiple style images, as a comma-separated list, such as-style_blend_weights 3,7
. By default all style images are equally weighted.-gpu
: Zero-indexed ID of the GPU to use; for CPU mode set-gpu
to -1.
Optimization options:
-content_weight
: How much to weight the content reconstruction term. Default is 5e0.-style_weight
: How much to weight the style reconstruction term. Default is 1e2.-tv_weight
: Weight of total-variation (TV) regularization; this helps to smooth the image. Default is 1e-3. Set to 0 to disable TV regularization.-num_iterations
: Default is 1000.-init
: Method for generating the generated image; one ofrandom
orimage
. Default israndom
which uses a noise initialization as in the paper;image
initializes with the content image.-optimizer
: The optimization algorithm to use; eitherlbfgs
oradam
; default islbfgs
. L-BFGS tends to give better results, but uses more memory. Switching to ADAM will reduce memory usage; when using ADAM you will probably need to play with other parameters to get good results, especially the style weight, content weight, and learning rate; you may also want to normalize gradients when using ADAM.-learning_rate
: Learning rate to use with the ADAM optimizer. Default is 1e1.-normalize_gradients
: If this flag is present, style and content gradients from each layer will be L1 normalized. Idea from andersbll/neural_artistic_style.
Output options:
-output_image
: Name of the output image. Default isout.png
.-print_iter
: Print progress everyprint_iter
iterations. Set to 0 to disable printing.-save_iter
: Save the image everysave_iter
iterations. Set to 0 to disable saving intermediate results.
Layer options:
-content_layers
: Comma-separated list of layer names to use for content reconstruction. Default isrelu4_2
.-style_layers
: Comma-separated list of layer names to use for style reconstruction. Default isrelu1_1,relu2_1,relu3_1,relu4_1,relu5_1
.
Other options:
-style_scale
: Scale at which to extract features from the style image. Default is 1.0.-original_colors
: If you set this to 1, then the output image will keep the colors of the content image.-proto_file
: Path to thedeploy.txt
file for the VGG Caffe model.-model_file
: Path to the.caffemodel
file for the VGG Caffe model. Default is the original VGG-19 model; you can also try the normalized VGG-19 model used in the paper.-pooling
: The type of pooling layers to use; one ofmax
oravg
. Default ismax
. The VGG-19 models uses max pooling layers, but the paper mentions that replacing these layers with average pooling layers can improve the results. I haven't been able to get good results using average pooling, but the option is here.-backend
:nn
,cudnn
, orclnn
. Default isnn
.cudnn
requires cudnn.torch and may reduce memory usage.clnn
requires cltorch and clnn-cudnn_autotune
: When using the cuDNN backend, pass this flag to use the built-in cuDNN autotuner to select the best convolution algorithms for your architecture. This will make the first iteration a bit slower and can take a bit more memory, but may significantly speed up the cuDNN backend.