├── .gitignore ├── README.md ├── data └── .gitkeep ├── dataset.py ├── kor_char_parser.py ├── main.py ├── results ├── with_attention.txt └── without_attention.txt └── tcn.py /.gitignore: -------------------------------------------------------------------------------- 1 | data 2 | *.pkl 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flrngel/TCN-with-attention/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flrngel/TCN-with-attention/HEAD/dataset.py -------------------------------------------------------------------------------- /kor_char_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flrngel/TCN-with-attention/HEAD/kor_char_parser.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flrngel/TCN-with-attention/HEAD/main.py -------------------------------------------------------------------------------- /results/with_attention.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flrngel/TCN-with-attention/HEAD/results/with_attention.txt -------------------------------------------------------------------------------- /results/without_attention.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flrngel/TCN-with-attention/HEAD/results/without_attention.txt -------------------------------------------------------------------------------- /tcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flrngel/TCN-with-attention/HEAD/tcn.py --------------------------------------------------------------------------------