├── .gitignore ├── LICENSE ├── README.md ├── data_utils ├── augment.py ├── common_utils.py ├── convert_ttf_to_sfd.py ├── relax_rep.py ├── svg_utils.py ├── svg_utils_backup.py ├── write_data_to_dirs.py └── write_glyph_imgs.py ├── dataloader.py ├── models ├── image_decoder.py ├── image_encoder.py ├── modality_fusion.py ├── model_main.py ├── pos_enc.py ├── transformers.py ├── util_funcs.py └── vgg_perceptual_loss.py ├── options.py ├── statics ├── chinese_font_demo_syn_1.gif ├── chinese_font_demo_syn_2.gif ├── v1_test_font_ids.txt └── v1_train_font_ids.txt ├── test_few_shot.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/README.md -------------------------------------------------------------------------------- /data_utils/augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/data_utils/augment.py -------------------------------------------------------------------------------- /data_utils/common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/data_utils/common_utils.py -------------------------------------------------------------------------------- /data_utils/convert_ttf_to_sfd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/data_utils/convert_ttf_to_sfd.py -------------------------------------------------------------------------------- /data_utils/relax_rep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/data_utils/relax_rep.py -------------------------------------------------------------------------------- /data_utils/svg_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/data_utils/svg_utils.py -------------------------------------------------------------------------------- /data_utils/svg_utils_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/data_utils/svg_utils_backup.py -------------------------------------------------------------------------------- /data_utils/write_data_to_dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/data_utils/write_data_to_dirs.py -------------------------------------------------------------------------------- /data_utils/write_glyph_imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/data_utils/write_glyph_imgs.py -------------------------------------------------------------------------------- /dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/dataloader.py -------------------------------------------------------------------------------- /models/image_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/models/image_decoder.py -------------------------------------------------------------------------------- /models/image_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/models/image_encoder.py -------------------------------------------------------------------------------- /models/modality_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/models/modality_fusion.py -------------------------------------------------------------------------------- /models/model_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/models/model_main.py -------------------------------------------------------------------------------- /models/pos_enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/models/pos_enc.py -------------------------------------------------------------------------------- /models/transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/models/transformers.py -------------------------------------------------------------------------------- /models/util_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/models/util_funcs.py -------------------------------------------------------------------------------- /models/vgg_perceptual_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/models/vgg_perceptual_loss.py -------------------------------------------------------------------------------- /options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/options.py -------------------------------------------------------------------------------- /statics/chinese_font_demo_syn_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/statics/chinese_font_demo_syn_1.gif -------------------------------------------------------------------------------- /statics/chinese_font_demo_syn_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/statics/chinese_font_demo_syn_2.gif -------------------------------------------------------------------------------- /statics/v1_test_font_ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/statics/v1_test_font_ids.txt -------------------------------------------------------------------------------- /statics/v1_train_font_ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/statics/v1_train_font_ids.txt -------------------------------------------------------------------------------- /test_few_shot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/test_few_shot.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yizhiwang96/deepvecfont-v2/HEAD/train.py --------------------------------------------------------------------------------