Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Latest commit

 

History

History
46 lines (27 loc) · 1.69 KB

README.md

File metadata and controls

46 lines (27 loc) · 1.69 KB

Neural style transfer

The goal of this project is to use different deep learning techniques in order to merge the style of one image and the content of another image (neural style transfer).

Neural style transfer

Techniques

The different techniques used are :

  • A Neural Algorithm of Artistic Style by Gatys et al. [paper] : located in python/gatys/
  • Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks by Zhu et al. [paper] : located in python/cycle-gan/

How to run the code ?

The different techniques have been implemented in python (version 3) mainly via the PyTorch library.

To create the necessary anaconda virtual environment (named neural_style_transfer), do

make create-env

or create the environment manually via the environment.yml file provided.

To use a technique, make sure to activate the virtual environment and do

python python/<technique-name>/main.py

Each hyperparameter of a technique can be modified via the corresponding main.py file.

Context

This project was realized as part of the Deep learning course given by Professor Louppe to the master students of Civil Engineering (Computer Science) at the University of Liège during the academic year 2019-2020.

Authors

Score

  • This project received a score of 17/20.