├── LICENSE.txt ├── dataloader.py ├── dataset └── intro │ ├── CVPR_22_textlogolayout_SM.pdf │ ├── demo_chn_res.jpg │ ├── demo_eng_res.jpg │ ├── textlogo3k_annos.jpg │ └── textlogo3k_logos.jpg ├── gen_data.py ├── models ├── condition_encoder.py ├── coord_generator.py ├── custom_lstm.py ├── diff_composition.py ├── discriminator.py ├── img_decoder.py ├── img_encoder.py ├── lstm_layernorm.py ├── util_funcs.py └── vgg_perceptual_loss.py ├── options.py ├── pytorch_fid ├── fid_score.py └── inception.py ├── readme.md ├── test.py └── train.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/dataloader.py -------------------------------------------------------------------------------- /dataset/intro/CVPR_22_textlogolayout_SM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/dataset/intro/CVPR_22_textlogolayout_SM.pdf -------------------------------------------------------------------------------- /dataset/intro/demo_chn_res.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/dataset/intro/demo_chn_res.jpg -------------------------------------------------------------------------------- /dataset/intro/demo_eng_res.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/dataset/intro/demo_eng_res.jpg -------------------------------------------------------------------------------- /dataset/intro/textlogo3k_annos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/dataset/intro/textlogo3k_annos.jpg -------------------------------------------------------------------------------- /dataset/intro/textlogo3k_logos.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/dataset/intro/textlogo3k_logos.jpg -------------------------------------------------------------------------------- /gen_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/gen_data.py -------------------------------------------------------------------------------- /models/condition_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/models/condition_encoder.py -------------------------------------------------------------------------------- /models/coord_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/models/coord_generator.py -------------------------------------------------------------------------------- /models/custom_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/models/custom_lstm.py -------------------------------------------------------------------------------- /models/diff_composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/models/diff_composition.py -------------------------------------------------------------------------------- /models/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/models/discriminator.py -------------------------------------------------------------------------------- /models/img_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/models/img_decoder.py -------------------------------------------------------------------------------- /models/img_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/models/img_encoder.py -------------------------------------------------------------------------------- /models/lstm_layernorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/models/lstm_layernorm.py -------------------------------------------------------------------------------- /models/util_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/models/util_funcs.py -------------------------------------------------------------------------------- /models/vgg_perceptual_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/models/vgg_perceptual_loss.py -------------------------------------------------------------------------------- /options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/options.py -------------------------------------------------------------------------------- /pytorch_fid/fid_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/pytorch_fid/fid_score.py -------------------------------------------------------------------------------- /pytorch_fid/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/pytorch_fid/inception.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/readme.md -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/TextLogoLayout/HEAD/train.py --------------------------------------------------------------------------------