├── .gitignore ├── English2Korean.ipynb ├── GRU2GRU.ipynb ├── GRU2GRU_consonant-vowel.py ├── GRU2GRU_consonant-vowel_LSTM.py ├── GRU2GRU_consonant-vowel_LSTM_flip.py ├── GRU2GRU_consonant-vowel_LSTM_flip_no_dropout.py ├── GRU2GRU_consonant-vowel_LSTM_no_dropout.py ├── GRU2GRU_consonant-vowel_flip.py ├── GRU2GRU_consonant-vowel_flip_no_dropout.py ├── GRU2GRU_consonant-vowel_no_dropout.py ├── GRU2GRU_letter.py ├── GRU2GRU_letter_dropout.py ├── README.md ├── data └── data.csv.example ├── hacky.py ├── hangul.js ├── hangul.py ├── images ├── demo.png ├── result.png └── tensorboard.png ├── logs ├── middle_dataset_GRU2GRU_consonant-vowel │ └── events.out.tfevents.1509588912.athena ├── middle_dataset_GRU2GRU_consonant-vowel_LSTM │ └── events.out.tfevents.1509591758.athena ├── middle_dataset_GRU2GRU_consonant-vowel_LSTM_flip │ └── events.out.tfevents.1509602971.athena ├── middle_dataset_GRU2GRU_consonant-vowel_LSTM_flip_no_dropout │ └── events.out.tfevents.1509603907.athena ├── middle_dataset_GRU2GRU_consonant-vowel_LSTM_no_dropout │ └── events.out.tfevents.1509599339.athena ├── middle_dataset_GRU2GRU_consonant-vowel_flip │ └── events.out.tfevents.1509600335.athena ├── middle_dataset_GRU2GRU_consonant-vowel_flip_no_dropout │ └── events.out.tfevents.1509600823.athena ├── middle_dataset_GRU2GRU_consonant-vowel_no_dropout │ └── events.out.tfevents.1509590443.athena ├── middle_dataset_GRU2GRU_letter │ └── events.out.tfevents.1509587363.athena └── middle_dataset_GRU2GRU_letter_dropout │ └── events.out.tfevents.1509587803.athena ├── results ├── GRU2GRU_consonant-vowel.png ├── GRU2GRU_consonant-vowel_LSTM.png ├── GRU2GRU_consonant-vowel_LSTM_flip.png ├── GRU2GRU_consonant-vowel_LSTM_flip_no_dropout.png ├── GRU2GRU_consonant-vowel_LSTM_no_dropout.png ├── GRU2GRU_consonant-vowel_flip.png ├── GRU2GRU_consonant-vowel_flip_no_dropout.png ├── GRU2GRU_consonant-vowel_no_dropout.png ├── GRU2GRU_letter.png ├── GRU2GRU_letter_dropout.png ├── middle_dataset_GRU2GRU_consonant-vowel.png ├── middle_dataset_GRU2GRU_consonant-vowel_LSTM.png ├── middle_dataset_GRU2GRU_consonant-vowel_LSTM_flip.png ├── middle_dataset_GRU2GRU_consonant-vowel_LSTM_flip_no_dropout.png ├── middle_dataset_GRU2GRU_consonant-vowel_LSTM_no_dropout.png ├── middle_dataset_GRU2GRU_consonant-vowel_flip.png ├── middle_dataset_GRU2GRU_consonant-vowel_flip_no_dropout.png ├── middle_dataset_GRU2GRU_consonant-vowel_no_dropout.png ├── middle_dataset_GRU2GRU_letter.png └── middle_dataset_GRU2GRU_letter_dropout.png └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/.gitignore -------------------------------------------------------------------------------- /English2Korean.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/English2Korean.ipynb -------------------------------------------------------------------------------- /GRU2GRU.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/GRU2GRU.ipynb -------------------------------------------------------------------------------- /GRU2GRU_consonant-vowel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/GRU2GRU_consonant-vowel.py -------------------------------------------------------------------------------- /GRU2GRU_consonant-vowel_LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/GRU2GRU_consonant-vowel_LSTM.py -------------------------------------------------------------------------------- /GRU2GRU_consonant-vowel_LSTM_flip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/GRU2GRU_consonant-vowel_LSTM_flip.py -------------------------------------------------------------------------------- /GRU2GRU_consonant-vowel_LSTM_flip_no_dropout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/GRU2GRU_consonant-vowel_LSTM_flip_no_dropout.py -------------------------------------------------------------------------------- /GRU2GRU_consonant-vowel_LSTM_no_dropout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/GRU2GRU_consonant-vowel_LSTM_no_dropout.py -------------------------------------------------------------------------------- /GRU2GRU_consonant-vowel_flip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/GRU2GRU_consonant-vowel_flip.py -------------------------------------------------------------------------------- /GRU2GRU_consonant-vowel_flip_no_dropout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/GRU2GRU_consonant-vowel_flip_no_dropout.py -------------------------------------------------------------------------------- /GRU2GRU_consonant-vowel_no_dropout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/GRU2GRU_consonant-vowel_no_dropout.py -------------------------------------------------------------------------------- /GRU2GRU_letter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/GRU2GRU_letter.py -------------------------------------------------------------------------------- /GRU2GRU_letter_dropout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/GRU2GRU_letter_dropout.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/README.md -------------------------------------------------------------------------------- /data/data.csv.example: -------------------------------------------------------------------------------- 1 | roman,hangul 2 | Fiery Cross Reef,파이어리 크로스 리프 3 | -------------------------------------------------------------------------------- /hacky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/hacky.py -------------------------------------------------------------------------------- /hangul.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/hangul.js -------------------------------------------------------------------------------- /hangul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/hangul.py -------------------------------------------------------------------------------- /images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/images/demo.png -------------------------------------------------------------------------------- /images/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/images/result.png -------------------------------------------------------------------------------- /images/tensorboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/images/tensorboard.png -------------------------------------------------------------------------------- /logs/middle_dataset_GRU2GRU_consonant-vowel/events.out.tfevents.1509588912.athena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/logs/middle_dataset_GRU2GRU_consonant-vowel/events.out.tfevents.1509588912.athena -------------------------------------------------------------------------------- /logs/middle_dataset_GRU2GRU_consonant-vowel_LSTM/events.out.tfevents.1509591758.athena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/logs/middle_dataset_GRU2GRU_consonant-vowel_LSTM/events.out.tfevents.1509591758.athena -------------------------------------------------------------------------------- /logs/middle_dataset_GRU2GRU_consonant-vowel_LSTM_flip/events.out.tfevents.1509602971.athena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/logs/middle_dataset_GRU2GRU_consonant-vowel_LSTM_flip/events.out.tfevents.1509602971.athena -------------------------------------------------------------------------------- /logs/middle_dataset_GRU2GRU_consonant-vowel_LSTM_flip_no_dropout/events.out.tfevents.1509603907.athena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/logs/middle_dataset_GRU2GRU_consonant-vowel_LSTM_flip_no_dropout/events.out.tfevents.1509603907.athena -------------------------------------------------------------------------------- /logs/middle_dataset_GRU2GRU_consonant-vowel_LSTM_no_dropout/events.out.tfevents.1509599339.athena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/logs/middle_dataset_GRU2GRU_consonant-vowel_LSTM_no_dropout/events.out.tfevents.1509599339.athena -------------------------------------------------------------------------------- /logs/middle_dataset_GRU2GRU_consonant-vowel_flip/events.out.tfevents.1509600335.athena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/logs/middle_dataset_GRU2GRU_consonant-vowel_flip/events.out.tfevents.1509600335.athena -------------------------------------------------------------------------------- /logs/middle_dataset_GRU2GRU_consonant-vowel_flip_no_dropout/events.out.tfevents.1509600823.athena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/logs/middle_dataset_GRU2GRU_consonant-vowel_flip_no_dropout/events.out.tfevents.1509600823.athena -------------------------------------------------------------------------------- /logs/middle_dataset_GRU2GRU_consonant-vowel_no_dropout/events.out.tfevents.1509590443.athena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/logs/middle_dataset_GRU2GRU_consonant-vowel_no_dropout/events.out.tfevents.1509590443.athena -------------------------------------------------------------------------------- /logs/middle_dataset_GRU2GRU_letter/events.out.tfevents.1509587363.athena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/logs/middle_dataset_GRU2GRU_letter/events.out.tfevents.1509587363.athena -------------------------------------------------------------------------------- /logs/middle_dataset_GRU2GRU_letter_dropout/events.out.tfevents.1509587803.athena: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/logs/middle_dataset_GRU2GRU_letter_dropout/events.out.tfevents.1509587803.athena -------------------------------------------------------------------------------- /results/GRU2GRU_consonant-vowel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/GRU2GRU_consonant-vowel.png -------------------------------------------------------------------------------- /results/GRU2GRU_consonant-vowel_LSTM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/GRU2GRU_consonant-vowel_LSTM.png -------------------------------------------------------------------------------- /results/GRU2GRU_consonant-vowel_LSTM_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/GRU2GRU_consonant-vowel_LSTM_flip.png -------------------------------------------------------------------------------- /results/GRU2GRU_consonant-vowel_LSTM_flip_no_dropout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/GRU2GRU_consonant-vowel_LSTM_flip_no_dropout.png -------------------------------------------------------------------------------- /results/GRU2GRU_consonant-vowel_LSTM_no_dropout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/GRU2GRU_consonant-vowel_LSTM_no_dropout.png -------------------------------------------------------------------------------- /results/GRU2GRU_consonant-vowel_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/GRU2GRU_consonant-vowel_flip.png -------------------------------------------------------------------------------- /results/GRU2GRU_consonant-vowel_flip_no_dropout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/GRU2GRU_consonant-vowel_flip_no_dropout.png -------------------------------------------------------------------------------- /results/GRU2GRU_consonant-vowel_no_dropout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/GRU2GRU_consonant-vowel_no_dropout.png -------------------------------------------------------------------------------- /results/GRU2GRU_letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/GRU2GRU_letter.png -------------------------------------------------------------------------------- /results/GRU2GRU_letter_dropout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/GRU2GRU_letter_dropout.png -------------------------------------------------------------------------------- /results/middle_dataset_GRU2GRU_consonant-vowel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/middle_dataset_GRU2GRU_consonant-vowel.png -------------------------------------------------------------------------------- /results/middle_dataset_GRU2GRU_consonant-vowel_LSTM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/middle_dataset_GRU2GRU_consonant-vowel_LSTM.png -------------------------------------------------------------------------------- /results/middle_dataset_GRU2GRU_consonant-vowel_LSTM_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/middle_dataset_GRU2GRU_consonant-vowel_LSTM_flip.png -------------------------------------------------------------------------------- /results/middle_dataset_GRU2GRU_consonant-vowel_LSTM_flip_no_dropout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/middle_dataset_GRU2GRU_consonant-vowel_LSTM_flip_no_dropout.png -------------------------------------------------------------------------------- /results/middle_dataset_GRU2GRU_consonant-vowel_LSTM_no_dropout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/middle_dataset_GRU2GRU_consonant-vowel_LSTM_no_dropout.png -------------------------------------------------------------------------------- /results/middle_dataset_GRU2GRU_consonant-vowel_flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/middle_dataset_GRU2GRU_consonant-vowel_flip.png -------------------------------------------------------------------------------- /results/middle_dataset_GRU2GRU_consonant-vowel_flip_no_dropout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/middle_dataset_GRU2GRU_consonant-vowel_flip_no_dropout.png -------------------------------------------------------------------------------- /results/middle_dataset_GRU2GRU_consonant-vowel_no_dropout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/middle_dataset_GRU2GRU_consonant-vowel_no_dropout.png -------------------------------------------------------------------------------- /results/middle_dataset_GRU2GRU_letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/middle_dataset_GRU2GRU_letter.png -------------------------------------------------------------------------------- /results/middle_dataset_GRU2GRU_letter_dropout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/results/middle_dataset_GRU2GRU_letter_dropout.png -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kcrong/English2Korean/HEAD/utils.py --------------------------------------------------------------------------------