├── PS2MAN.py ├── README.md ├── cuhkdata_augmented.tar.gz ├── data ├── base_data_loader.py ├── base_dataset.py ├── custom_dataset_data_loader.py ├── data_loader.py ├── image_folder.py └── unaligned_dataset.py ├── datasets └── cuhkdata_augmented.tar.gz ├── net └── networks.py ├── scripts └── train_ps2man.sh ├── util.py └── visualizer.py /PS2MAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/PS2MAN.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/README.md -------------------------------------------------------------------------------- /cuhkdata_augmented.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/cuhkdata_augmented.tar.gz -------------------------------------------------------------------------------- /data/base_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/data/base_data_loader.py -------------------------------------------------------------------------------- /data/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/data/base_dataset.py -------------------------------------------------------------------------------- /data/custom_dataset_data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/data/custom_dataset_data_loader.py -------------------------------------------------------------------------------- /data/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/data/data_loader.py -------------------------------------------------------------------------------- /data/image_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/data/image_folder.py -------------------------------------------------------------------------------- /data/unaligned_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/data/unaligned_dataset.py -------------------------------------------------------------------------------- /datasets/cuhkdata_augmented.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/datasets/cuhkdata_augmented.tar.gz -------------------------------------------------------------------------------- /net/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/net/networks.py -------------------------------------------------------------------------------- /scripts/train_ps2man.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/scripts/train_ps2man.sh -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/util.py -------------------------------------------------------------------------------- /visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lidan1/PhotoSketchMAN/HEAD/visualizer.py --------------------------------------------------------------------------------