├── .gitignore ├── README.md ├── data └── train_data_example.csv ├── dataset.py ├── documents ├── AI_Hub_page.png ├── demo.gif ├── font_list.png ├── generated_data.png ├── handwritten_data.png ├── model architecture.png ├── model.png ├── printed_data.png ├── syllable_list.png ├── testing_results.png ├── training_results.png └── webapp.png ├── model.py ├── saved_model ├── best_loss_0.03_model.h5 └── best_loss_0.04_model.h5 ├── test.py ├── train.py ├── utils.py └── webapp.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/README.md -------------------------------------------------------------------------------- /data/train_data_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/data/train_data_example.csv -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/dataset.py -------------------------------------------------------------------------------- /documents/AI_Hub_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/documents/AI_Hub_page.png -------------------------------------------------------------------------------- /documents/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/documents/demo.gif -------------------------------------------------------------------------------- /documents/font_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/documents/font_list.png -------------------------------------------------------------------------------- /documents/generated_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/documents/generated_data.png -------------------------------------------------------------------------------- /documents/handwritten_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/documents/handwritten_data.png -------------------------------------------------------------------------------- /documents/model architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/documents/model architecture.png -------------------------------------------------------------------------------- /documents/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/documents/model.png -------------------------------------------------------------------------------- /documents/printed_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/documents/printed_data.png -------------------------------------------------------------------------------- /documents/syllable_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/documents/syllable_list.png -------------------------------------------------------------------------------- /documents/testing_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/documents/testing_results.png -------------------------------------------------------------------------------- /documents/training_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/documents/training_results.png -------------------------------------------------------------------------------- /documents/webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/documents/webapp.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/model.py -------------------------------------------------------------------------------- /saved_model/best_loss_0.03_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/saved_model/best_loss_0.03_model.h5 -------------------------------------------------------------------------------- /saved_model/best_loss_0.04_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/saved_model/best_loss_0.04_model.h5 -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/utils.py -------------------------------------------------------------------------------- /webapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/junstar92/hangul-syllable-recognition/HEAD/webapp.py --------------------------------------------------------------------------------