├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── general-questions.md ├── DM ├── dataset.py ├── models │ ├── __init__.py │ ├── aux_classifier.py │ ├── comp_encoder.py │ ├── decoder.py │ ├── discriminator.py │ ├── generator.py │ └── memory.py └── trainer.py ├── FUNIT ├── dataset.py ├── models │ ├── blocks.py │ ├── funit_model.py │ └── networks.py └── trainer.py ├── LF ├── models │ ├── __init__.py │ ├── aux_classifier.py │ ├── comp_encoder.py │ ├── content_encoder.py │ ├── decoder.py │ ├── discriminator.py │ ├── generator.py │ └── memory.py ├── phase1_dataset.py ├── phase1_trainer.py ├── phase2_dataset.py └── phase2_trainer.py ├── LICENSE ├── MX ├── dataset.py ├── hsic.py ├── models │ ├── __init__.py │ ├── aux_classifier.py │ ├── decoder.py │ ├── discriminator.py │ ├── experts.py │ ├── generator.py │ └── style_encoder.py └── trainer.py ├── NOTICE ├── README.md ├── base ├── dataset │ ├── __init__.py │ ├── base_dataset.py │ ├── data_utils.py │ └── ttf_utils.py ├── modules │ ├── __init__.py │ ├── blocks.py │ ├── cbam.py │ ├── frn.py │ ├── modules.py │ └── self_attention.py ├── trainer │ ├── __init__.py │ ├── base_trainer.py │ ├── criterions.py │ └── trainer_utils.py └── utils │ ├── __init__.py │ ├── config.py │ ├── load.py │ ├── logger.py │ ├── utils.py │ ├── visualize.py │ └── writer.py ├── cfgs ├── DM │ ├── default.yaml │ ├── eval.yaml │ └── train.yaml ├── FUNIT │ ├── default.yaml │ └── train.yaml ├── LF │ ├── p1 │ │ ├── default.yaml │ │ └── train.yaml │ └── p2 │ │ ├── default.yaml │ │ ├── eval.yaml │ │ └── train.yaml ├── MX │ ├── default.yaml │ └── train.yaml ├── data │ ├── eval │ │ ├── chn_png.yaml │ │ ├── chn_ttf.yaml │ │ └── kor_ttf.yaml │ └── train │ │ ├── chn_ftransgan.yaml │ │ └── custom.yaml └── evaluator │ ├── default.yaml │ ├── eval_ftransgan.yaml │ └── train.yaml ├── data ├── chn │ ├── decomposition.json │ ├── eval_chars.json │ ├── ftransgan │ │ ├── eval_chars.json │ │ ├── eval_keys.json │ │ ├── seen_chars.json │ │ └── unseen_chars.json │ ├── gen_chars.json │ ├── primals.json │ ├── ref_chars.json │ ├── source.ttf │ ├── train_chars.json │ ├── val_seen_chars.json │ └── val_unseen_chars.json └── kor │ ├── decomposition.json │ ├── decomposition_DM.json │ ├── eval_chars.json │ ├── gen_chars.json │ ├── primals.json │ ├── ref_chars.json │ ├── source.ttf │ ├── train_chars.json │ ├── val_seen_chars.json │ └── val_unseen_chars.json ├── data_example ├── chn │ ├── png │ │ ├── MaShanZheng-Regular │ │ │ ├── 时.png │ │ │ ├── 猿.png │ │ │ ├── 赧.png │ │ │ └── 蹙.png │ │ └── ZCOOLKuaiLe-Regular │ │ │ ├── 圄.png │ │ │ ├── 檎.png │ │ │ ├── 泷.png │ │ │ └── 涠.png │ └── ttf │ │ ├── MaShanZheng-Regular.ttf │ │ ├── MaShanZheng-Regular.txt │ │ ├── ZCOOLKuaiLe-Regular.ttf │ │ └── ZCOOLKuaiLe-Regular.txt └── kor │ ├── png │ ├── UhBee_HanByeol │ │ ├── 값.png │ │ ├── 같.png │ │ ├── 곬.png │ │ ├── 곶.png │ │ ├── 깎.png │ │ ├── 넋.png │ │ ├── 늪.png │ │ ├── 닫.png │ │ ├── 닭.png │ │ ├── 닻.png │ │ ├── 됩.png │ │ ├── 뗌.png │ │ ├── 략.png │ │ ├── 몃.png │ │ ├── 밟.png │ │ ├── 볘.png │ │ ├── 뺐.png │ │ ├── 뽈.png │ │ ├── 솩.png │ │ ├── 쐐.png │ │ ├── 앉.png │ │ ├── 않.png │ │ ├── 얘.png │ │ ├── 얾.png │ │ ├── 엌.png │ │ ├── 옳.png │ │ ├── 읊.png │ │ ├── 죡.png │ │ ├── 쮜.png │ │ ├── 춰.png │ │ ├── 츄.png │ │ ├── 퀭.png │ │ ├── 틔.png │ │ ├── 핀.png │ │ ├── 핥.png │ │ └── 훟.png │ └── UhBee_charming │ │ ├── 값.png │ │ ├── 같.png │ │ ├── 곬.png │ │ ├── 곶.png │ │ ├── 깎.png │ │ ├── 넋.png │ │ ├── 늪.png │ │ ├── 닫.png │ │ ├── 닭.png │ │ ├── 닻.png │ │ ├── 됩.png │ │ ├── 뗌.png │ │ ├── 략.png │ │ ├── 몃.png │ │ ├── 밟.png │ │ ├── 볘.png │ │ ├── 뺐.png │ │ ├── 뽈.png │ │ ├── 솩.png │ │ ├── 쐐.png │ │ ├── 앉.png │ │ ├── 않.png │ │ ├── 얘.png │ │ ├── 얾.png │ │ ├── 엌.png │ │ ├── 옳.png │ │ ├── 읊.png │ │ ├── 죡.png │ │ ├── 쮜.png │ │ ├── 춰.png │ │ ├── 츄.png │ │ ├── 퀭.png │ │ ├── 틔.png │ │ ├── 핀.png │ │ ├── 핥.png │ │ └── 훟.png │ └── ttf │ ├── UhBee_HanByeol.ttf │ ├── UhBee_HanByeol.txt │ ├── UhBee_charming.ttf │ └── UhBee_charming.txt ├── docs ├── Dataset.md ├── Evaluation.md ├── FTransGAN-Dataset.md ├── Reference.md └── models │ ├── DM-Font.md │ ├── FUNIT.md │ ├── LF-Font.md │ └── MX-Font.md ├── eval.py ├── evaluator ├── cutmix.py ├── dataset.py ├── model.py ├── ssim.py ├── test.py └── trainer.py ├── get_chars_from_ttf.py ├── inference.py ├── inference_DM.ipynb ├── inference_FUNIT.ipynb ├── inference_LF.ipynb ├── inference_MX.ipynb ├── requirements.txt ├── train_DM.py ├── train_FUNIT.py ├── train_LF.py ├── train_MX.py └── train_evaluator.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general-questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/.github/ISSUE_TEMPLATE/general-questions.md -------------------------------------------------------------------------------- /DM/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/DM/dataset.py -------------------------------------------------------------------------------- /DM/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/DM/models/__init__.py -------------------------------------------------------------------------------- /DM/models/aux_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/DM/models/aux_classifier.py -------------------------------------------------------------------------------- /DM/models/comp_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/DM/models/comp_encoder.py -------------------------------------------------------------------------------- /DM/models/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/DM/models/decoder.py -------------------------------------------------------------------------------- /DM/models/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/DM/models/discriminator.py -------------------------------------------------------------------------------- /DM/models/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/DM/models/generator.py -------------------------------------------------------------------------------- /DM/models/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/DM/models/memory.py -------------------------------------------------------------------------------- /DM/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/DM/trainer.py -------------------------------------------------------------------------------- /FUNIT/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/FUNIT/dataset.py -------------------------------------------------------------------------------- /FUNIT/models/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/FUNIT/models/blocks.py -------------------------------------------------------------------------------- /FUNIT/models/funit_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/FUNIT/models/funit_model.py -------------------------------------------------------------------------------- /FUNIT/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/FUNIT/models/networks.py -------------------------------------------------------------------------------- /FUNIT/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/FUNIT/trainer.py -------------------------------------------------------------------------------- /LF/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LF/models/__init__.py -------------------------------------------------------------------------------- /LF/models/aux_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LF/models/aux_classifier.py -------------------------------------------------------------------------------- /LF/models/comp_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LF/models/comp_encoder.py -------------------------------------------------------------------------------- /LF/models/content_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LF/models/content_encoder.py -------------------------------------------------------------------------------- /LF/models/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LF/models/decoder.py -------------------------------------------------------------------------------- /LF/models/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LF/models/discriminator.py -------------------------------------------------------------------------------- /LF/models/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LF/models/generator.py -------------------------------------------------------------------------------- /LF/models/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LF/models/memory.py -------------------------------------------------------------------------------- /LF/phase1_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LF/phase1_dataset.py -------------------------------------------------------------------------------- /LF/phase1_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LF/phase1_trainer.py -------------------------------------------------------------------------------- /LF/phase2_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LF/phase2_dataset.py -------------------------------------------------------------------------------- /LF/phase2_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LF/phase2_trainer.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/LICENSE -------------------------------------------------------------------------------- /MX/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/MX/dataset.py -------------------------------------------------------------------------------- /MX/hsic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/MX/hsic.py -------------------------------------------------------------------------------- /MX/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/MX/models/__init__.py -------------------------------------------------------------------------------- /MX/models/aux_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/MX/models/aux_classifier.py -------------------------------------------------------------------------------- /MX/models/decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/MX/models/decoder.py -------------------------------------------------------------------------------- /MX/models/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/MX/models/discriminator.py -------------------------------------------------------------------------------- /MX/models/experts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/MX/models/experts.py -------------------------------------------------------------------------------- /MX/models/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/MX/models/generator.py -------------------------------------------------------------------------------- /MX/models/style_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/MX/models/style_encoder.py -------------------------------------------------------------------------------- /MX/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/MX/trainer.py -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/README.md -------------------------------------------------------------------------------- /base/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/dataset/__init__.py -------------------------------------------------------------------------------- /base/dataset/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/dataset/base_dataset.py -------------------------------------------------------------------------------- /base/dataset/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/dataset/data_utils.py -------------------------------------------------------------------------------- /base/dataset/ttf_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/dataset/ttf_utils.py -------------------------------------------------------------------------------- /base/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/modules/__init__.py -------------------------------------------------------------------------------- /base/modules/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/modules/blocks.py -------------------------------------------------------------------------------- /base/modules/cbam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/modules/cbam.py -------------------------------------------------------------------------------- /base/modules/frn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/modules/frn.py -------------------------------------------------------------------------------- /base/modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/modules/modules.py -------------------------------------------------------------------------------- /base/modules/self_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/modules/self_attention.py -------------------------------------------------------------------------------- /base/trainer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/trainer/__init__.py -------------------------------------------------------------------------------- /base/trainer/base_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/trainer/base_trainer.py -------------------------------------------------------------------------------- /base/trainer/criterions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/trainer/criterions.py -------------------------------------------------------------------------------- /base/trainer/trainer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/trainer/trainer_utils.py -------------------------------------------------------------------------------- /base/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/utils/__init__.py -------------------------------------------------------------------------------- /base/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/utils/config.py -------------------------------------------------------------------------------- /base/utils/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/utils/load.py -------------------------------------------------------------------------------- /base/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/utils/logger.py -------------------------------------------------------------------------------- /base/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/utils/utils.py -------------------------------------------------------------------------------- /base/utils/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/utils/visualize.py -------------------------------------------------------------------------------- /base/utils/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/base/utils/writer.py -------------------------------------------------------------------------------- /cfgs/DM/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/DM/default.yaml -------------------------------------------------------------------------------- /cfgs/DM/eval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/DM/eval.yaml -------------------------------------------------------------------------------- /cfgs/DM/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/DM/train.yaml -------------------------------------------------------------------------------- /cfgs/FUNIT/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/FUNIT/default.yaml -------------------------------------------------------------------------------- /cfgs/FUNIT/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/FUNIT/train.yaml -------------------------------------------------------------------------------- /cfgs/LF/p1/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/LF/p1/default.yaml -------------------------------------------------------------------------------- /cfgs/LF/p1/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/LF/p1/train.yaml -------------------------------------------------------------------------------- /cfgs/LF/p2/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/LF/p2/default.yaml -------------------------------------------------------------------------------- /cfgs/LF/p2/eval.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/LF/p2/eval.yaml -------------------------------------------------------------------------------- /cfgs/LF/p2/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/LF/p2/train.yaml -------------------------------------------------------------------------------- /cfgs/MX/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/MX/default.yaml -------------------------------------------------------------------------------- /cfgs/MX/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/MX/train.yaml -------------------------------------------------------------------------------- /cfgs/data/eval/chn_png.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/data/eval/chn_png.yaml -------------------------------------------------------------------------------- /cfgs/data/eval/chn_ttf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/data/eval/chn_ttf.yaml -------------------------------------------------------------------------------- /cfgs/data/eval/kor_ttf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/data/eval/kor_ttf.yaml -------------------------------------------------------------------------------- /cfgs/data/train/chn_ftransgan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/data/train/chn_ftransgan.yaml -------------------------------------------------------------------------------- /cfgs/data/train/custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/data/train/custom.yaml -------------------------------------------------------------------------------- /cfgs/evaluator/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/evaluator/default.yaml -------------------------------------------------------------------------------- /cfgs/evaluator/eval_ftransgan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/evaluator/eval_ftransgan.yaml -------------------------------------------------------------------------------- /cfgs/evaluator/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/cfgs/evaluator/train.yaml -------------------------------------------------------------------------------- /data/chn/decomposition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/decomposition.json -------------------------------------------------------------------------------- /data/chn/eval_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/eval_chars.json -------------------------------------------------------------------------------- /data/chn/ftransgan/eval_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/ftransgan/eval_chars.json -------------------------------------------------------------------------------- /data/chn/ftransgan/eval_keys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/ftransgan/eval_keys.json -------------------------------------------------------------------------------- /data/chn/ftransgan/seen_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/ftransgan/seen_chars.json -------------------------------------------------------------------------------- /data/chn/ftransgan/unseen_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/ftransgan/unseen_chars.json -------------------------------------------------------------------------------- /data/chn/gen_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/gen_chars.json -------------------------------------------------------------------------------- /data/chn/primals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/primals.json -------------------------------------------------------------------------------- /data/chn/ref_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/ref_chars.json -------------------------------------------------------------------------------- /data/chn/source.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/source.ttf -------------------------------------------------------------------------------- /data/chn/train_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/train_chars.json -------------------------------------------------------------------------------- /data/chn/val_seen_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/val_seen_chars.json -------------------------------------------------------------------------------- /data/chn/val_unseen_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/chn/val_unseen_chars.json -------------------------------------------------------------------------------- /data/kor/decomposition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/kor/decomposition.json -------------------------------------------------------------------------------- /data/kor/decomposition_DM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/kor/decomposition_DM.json -------------------------------------------------------------------------------- /data/kor/eval_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/kor/eval_chars.json -------------------------------------------------------------------------------- /data/kor/gen_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/kor/gen_chars.json -------------------------------------------------------------------------------- /data/kor/primals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/kor/primals.json -------------------------------------------------------------------------------- /data/kor/ref_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/kor/ref_chars.json -------------------------------------------------------------------------------- /data/kor/source.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/kor/source.ttf -------------------------------------------------------------------------------- /data/kor/train_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/kor/train_chars.json -------------------------------------------------------------------------------- /data/kor/val_seen_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/kor/val_seen_chars.json -------------------------------------------------------------------------------- /data/kor/val_unseen_chars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data/kor/val_unseen_chars.json -------------------------------------------------------------------------------- /data_example/chn/png/MaShanZheng-Regular/时.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/chn/png/MaShanZheng-Regular/时.png -------------------------------------------------------------------------------- /data_example/chn/png/MaShanZheng-Regular/猿.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/chn/png/MaShanZheng-Regular/猿.png -------------------------------------------------------------------------------- /data_example/chn/png/MaShanZheng-Regular/赧.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/chn/png/MaShanZheng-Regular/赧.png -------------------------------------------------------------------------------- /data_example/chn/png/MaShanZheng-Regular/蹙.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/chn/png/MaShanZheng-Regular/蹙.png -------------------------------------------------------------------------------- /data_example/chn/png/ZCOOLKuaiLe-Regular/圄.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/chn/png/ZCOOLKuaiLe-Regular/圄.png -------------------------------------------------------------------------------- /data_example/chn/png/ZCOOLKuaiLe-Regular/檎.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/chn/png/ZCOOLKuaiLe-Regular/檎.png -------------------------------------------------------------------------------- /data_example/chn/png/ZCOOLKuaiLe-Regular/泷.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/chn/png/ZCOOLKuaiLe-Regular/泷.png -------------------------------------------------------------------------------- /data_example/chn/png/ZCOOLKuaiLe-Regular/涠.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/chn/png/ZCOOLKuaiLe-Regular/涠.png -------------------------------------------------------------------------------- /data_example/chn/ttf/MaShanZheng-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/chn/ttf/MaShanZheng-Regular.ttf -------------------------------------------------------------------------------- /data_example/chn/ttf/MaShanZheng-Regular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/chn/ttf/MaShanZheng-Regular.txt -------------------------------------------------------------------------------- /data_example/chn/ttf/ZCOOLKuaiLe-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/chn/ttf/ZCOOLKuaiLe-Regular.ttf -------------------------------------------------------------------------------- /data_example/chn/ttf/ZCOOLKuaiLe-Regular.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/chn/ttf/ZCOOLKuaiLe-Regular.txt -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/값.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/값.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/같.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/같.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/곬.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/곬.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/곶.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/곶.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/깎.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/깎.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/넋.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/넋.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/늪.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/늪.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/닫.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/닫.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/닭.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/닭.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/닻.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/닻.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/됩.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/됩.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/뗌.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/뗌.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/략.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/략.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/몃.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/몃.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/밟.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/밟.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/볘.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/볘.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/뺐.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/뺐.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/뽈.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/뽈.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/솩.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/솩.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/쐐.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/쐐.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/앉.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/앉.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/않.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/않.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/얘.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/얘.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/얾.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/얾.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/엌.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/엌.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/옳.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/옳.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/읊.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/읊.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/죡.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/죡.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/쮜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/쮜.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/춰.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/춰.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/츄.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/츄.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/퀭.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/퀭.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/틔.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/틔.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/핀.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/핀.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/핥.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/핥.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_HanByeol/훟.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_HanByeol/훟.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/값.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/값.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/같.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/같.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/곬.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/곬.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/곶.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/곶.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/깎.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/깎.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/넋.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/넋.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/늪.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/늪.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/닫.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/닫.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/닭.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/닭.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/닻.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/닻.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/됩.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/됩.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/뗌.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/뗌.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/략.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/략.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/몃.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/몃.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/밟.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/밟.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/볘.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/볘.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/뺐.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/뺐.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/뽈.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/뽈.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/솩.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/솩.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/쐐.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/쐐.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/앉.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/앉.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/않.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/않.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/얘.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/얘.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/얾.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/얾.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/엌.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/엌.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/옳.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/옳.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/읊.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/읊.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/죡.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/죡.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/쮜.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/쮜.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/춰.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/춰.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/츄.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/츄.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/퀭.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/퀭.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/틔.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/틔.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/핀.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/핀.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/핥.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/핥.png -------------------------------------------------------------------------------- /data_example/kor/png/UhBee_charming/훟.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/png/UhBee_charming/훟.png -------------------------------------------------------------------------------- /data_example/kor/ttf/UhBee_HanByeol.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/ttf/UhBee_HanByeol.ttf -------------------------------------------------------------------------------- /data_example/kor/ttf/UhBee_HanByeol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/ttf/UhBee_HanByeol.txt -------------------------------------------------------------------------------- /data_example/kor/ttf/UhBee_charming.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/ttf/UhBee_charming.ttf -------------------------------------------------------------------------------- /data_example/kor/ttf/UhBee_charming.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/data_example/kor/ttf/UhBee_charming.txt -------------------------------------------------------------------------------- /docs/Dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/docs/Dataset.md -------------------------------------------------------------------------------- /docs/Evaluation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/docs/Evaluation.md -------------------------------------------------------------------------------- /docs/FTransGAN-Dataset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/docs/FTransGAN-Dataset.md -------------------------------------------------------------------------------- /docs/Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/docs/Reference.md -------------------------------------------------------------------------------- /docs/models/DM-Font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/docs/models/DM-Font.md -------------------------------------------------------------------------------- /docs/models/FUNIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/docs/models/FUNIT.md -------------------------------------------------------------------------------- /docs/models/LF-Font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/docs/models/LF-Font.md -------------------------------------------------------------------------------- /docs/models/MX-Font.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/docs/models/MX-Font.md -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/eval.py -------------------------------------------------------------------------------- /evaluator/cutmix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/evaluator/cutmix.py -------------------------------------------------------------------------------- /evaluator/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/evaluator/dataset.py -------------------------------------------------------------------------------- /evaluator/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/evaluator/model.py -------------------------------------------------------------------------------- /evaluator/ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/evaluator/ssim.py -------------------------------------------------------------------------------- /evaluator/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/evaluator/test.py -------------------------------------------------------------------------------- /evaluator/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/evaluator/trainer.py -------------------------------------------------------------------------------- /get_chars_from_ttf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/get_chars_from_ttf.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/inference.py -------------------------------------------------------------------------------- /inference_DM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/inference_DM.ipynb -------------------------------------------------------------------------------- /inference_FUNIT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/inference_FUNIT.ipynb -------------------------------------------------------------------------------- /inference_LF.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/inference_LF.ipynb -------------------------------------------------------------------------------- /inference_MX.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/inference_MX.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/requirements.txt -------------------------------------------------------------------------------- /train_DM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/train_DM.py -------------------------------------------------------------------------------- /train_FUNIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/train_FUNIT.py -------------------------------------------------------------------------------- /train_LF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/train_LF.py -------------------------------------------------------------------------------- /train_MX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/train_MX.py -------------------------------------------------------------------------------- /train_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clovaai/fewshot-font-generation/HEAD/train_evaluator.py --------------------------------------------------------------------------------