Skip to content

Latest commit

 

History

History
32 lines (27 loc) · 1.58 KB

README.md

File metadata and controls

32 lines (27 loc) · 1.58 KB

Image Colourization using Conditional Generative Adversarial Networks

Image Colourization

  • Final project for the Machine Learning Master's course at University of Groningen
  • The focus is on Colourization task using Conditional Generative Adversarial Networks
  • Using pre-trained ResNet and UNet
  • Some code is borrowed from one of the author's repo

Instructions to run the code

  • For running the train script use. Use --help to list all the commandline options.
python3 src/train.py --help
  • After training, use the following script to compute evaluation metrics on the test set. Use --help to list all the commandline options.
python3 src/compute_test_metrics.py --help
  • After training, use the following script to colourize the images using the Generator network. Use --help to list all the commandline options.
python3 src/generate_results.py --help

Weights file

Dependencies

Reference