@article{wu2022ccpl,
title={CCPL: Contrastive Coherence Preserving Loss for Versatile Style Transfer},
author={Wu, Zijie and Zhu, Zhen and Du, Junping and Bai, Xiang},
journal={arXiv preprint arXiv:2207.04808},
year={2022}
}
This code is tested under Ubuntu 14.04 and 16.04. The total project can well function under the following environment:
- python-3.6
- pytorch >= 1.2
- torchvision >= 0.4
- tensorboardX >= 1.8
- other packages under python-3.6
or simply run:
pip install -r requirements.txt
Download vgg_normalized.pth and put them under models/
. Download COCO2014 dataset (content dataset) and Wikiart dataset (style dataset)
To train a model, use command like:
python train.py --content_dir <content_dir> --style_dir <style_dir> --log_dir <where to place logs> --save_dir <where to place the trained model> --training_mode <artistic or photo-realistic> --gpu <specify a gpu>
or:
sh scripts/train.sh
To test a model, use commands like
python test.py --content input/content/lenna.jpg --style input/style/in2.jpg --decoder <decoder_dir> --SCT <SCT_dir> --testing_mode <artistic or photo-realistic>
python test_video_frame.py --content_dir <video frames dir> --style_path input/style/in2.jpg --decoder <decoder_dir> --SCT <SCT_dir> --testing_mode <artistic or photo-realistic>
or:
sh scripts/test.sh
sh scripts/test_video_frame.sh
For more details and parameters, please refer to --help option.
To use the pre-trained models, please download here pre-trained models and specify them during training (These pre-trained models are trained under pytorch-1.9.1 and torchvision-0.10.1)
The code is based on project AdaIN and CUT. We sincerely thank them for their great work.