Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

deephdc/neural_transfer

 
 

Repository files navigation


The Repository is ARCHIVED!


DEEP Open Catalogue: Neural Transfer

Build Status

Author: Silke Donayre (KIT)

Project: This work is part of the DEEP Hybrid-DataCloud project that has received funding from the European Union’s Horizon 2020 research and innovation programme under grant agreement No 777435.

This is an example of how to perform neural transfer. This module allows you to take the content of an image and reproduce it with a new artistic style using the style of a different image. The code is based on the Faster Neural Style Pytorch example that implements the method described in Perceptual Losses for Real-Time Style Transfer and Super-Resolution developed by Justin Johnson, Alexandre Alahia and Li Fei-Fei. This module returns as a prediction either the new styled image or a pdf containing the input and the result image. You can also train a new network to have a add a new style.



Table of contents

  1. Installing this module
    1. Local installation
    2. Docker installation
  2. Predict
  3. Train
  4. Acknowledgements

Installing this module

Local installation

Requirements

To start using this framework clone the repo:

git clone https://github.com/deephdc/neural_transfer
cd neural_transfer
pip install -e .

now run DEEPaaS:

deepaas-run --listen-ip 0.0.0.0

and open http://0.0.0.0:5000/ui and look for the methods belonging to the neural_transfer module.

Docker installation

We have also prepared a ready-to-use Docker container to run this module. To run it:

docker search deephdc
docker run -ti -p 5000:5000 -p 6006:6006 -p 8888:8888 deephdc/deep-oc-neural_transfer

Now open http://0.0.0.0:5000/ui and look for the methods belonging to the neural_transfer module.

You can find more information about it in the DEEP Marketplace.

Predict

Go to http://0.0.0.0:5000/ui and look for the PREDICT POST method. Click on 'Try it out', choose the image you want to stylize, write the name of the available style (we provide four styles: 'mosaic', 'udnie', 'rain_princess' and 'candy', you can also add more styles with the train function), choose the output type and click 'Execute'.

Train

If you want to add a new style go to http://0.0.0.0:5000/ui and look for the TRAIN POST method. You will need a set of images that will be used to train the network and also the image with the new style.

There are two ways. The first one is by putting the images direct into the project folder. To do this, you need to place the following data in the following folders:

neural_transfer
    └──  data                     <- Put your style image here.             
         └── raw 
             └── training_dataset <- Create the training_dataset folder and put the training images inside.
         

The second way is to download the files that are stored remotely. To do this, you need to create a new folder in Nextcloud called neural_transfer with the following architecture:

neural_transfer
    ├── styles                 <- Folder containing the images with different styles to be transferred.
    ├── models                 <- Folder containing the new trained models with the learned styles.
    └── dataset                <- Folder containing the folder with the training images.
        └── training_dataset        <- Folder containing the images used for training.

Once you have the style and the training images allocated click on 'Try it out'. The name of the model must have the same name as the style image. For example, if your style image is named: "starry_night.jpg", the parameter model_name must be "starry_night.jpg" too. Then, modify the parameters if necessary and click 'Execute'. Once the training is finished you can go to the Predict section, write the name of the model without the type extension (e.g. .jpg) and stylize an image with your new style.

Acknowledgements

The original code, etc. were created by Pytorch and can be found here.

If you consider this project to be useful, please consider citing the DEEP Hybrid DataCloud project:

García, Álvaro López, et al. A Cloud-Based Framework for Machine Learning Workloads and Applications. IEEE Access 8 (2020): 18681-18692.

Project based on the cookiecutter data science project template. #cookiecutterdatascience

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 96.7%
  • Jupyter Notebook 3.3%