Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 964 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 964 Bytes

CC-CycleGAN

Class-Consistency CycleGAN restrict generated data by given labels. Derived from original CycleGAN, we insert two classification Networks with shared weights as the two constrain branches.

In this repo, I generate license plate and restricted the generated license plate characters by inserting a crnn network as the classifcation Network and training the branch with ctc-loss.

Architecture

Comparison from original CycleGAN in license plate style transfer

The license plate numbers in proposed CC-CycleGAN are clear and recognizable.

Disclaimer

This is highly based on the subfolder "cyclegan" in https://github.com/eriklindernoren/Keras-GAN repo.