├── LICENSE ├── README.md ├── cache_elmo.py ├── char_vocab.20181126.txt ├── char_vocab.korean8_pd_NER.txt ├── character_evaluate.py ├── conll.py ├── coref-result181106 ├── coref-ttaresult181106 ├── coref-ttaresult181128 ├── coref_kernels.cc ├── coref_kernels.so ├── coref_model.py ├── coref_ops.py ├── coreference.sh ├── coreference_tta.sh ├── data ├── dev.korean_pd_NER.jsonlines ├── dev.korean_pd_NER.v4_gold_conll ├── dev.pilot2.jsonlines ├── dev.pilot2.v4_gold_conll ├── ref.out ├── sys.out ├── test.korean_pd_NER.jsonlines ├── test.korean_pd_NER.v4_gold_conll ├── train.korean_pd_NER.jsonlines ├── train.korean_pd_NER.v4_gold_conll ├── train.pilot2.jsonlines ├── train.pilot2.v4_gold_conll └── vimrc ├── demo.py ├── dev.20181126.jsonlines ├── dev.20181126.v4_gold_conll ├── elmo_cache.20181126.hdf5 ├── elmo_cache_pd_NER8.hdf5 ├── entity_type_kbox ├── etri.py ├── etri.pyc ├── evaluate.py ├── experiments.conf ├── filter_embeddings.py ├── get_char_vocab.py ├── jisi_determiner_list.txt ├── jsonlines_to_json.py ├── link_character.py ├── make_conll.py ├── make_document.py ├── metrics.py ├── minimize.py ├── new_elmo_cache.hdf5 ├── output.csv ├── pre_dump.py ├── predict.py ├── pronoun_detect_2.py ├── pronoun_lemma_list.txt ├── requirements.txt ├── result181106.jsonlines ├── result181106.v4_gold_conll ├── temp_data ├── 907410_1.json ├── 907410_2.json ├── 907410_3.json ├── 907410_4.json ├── 907410_5.json ├── 907410_6.json ├── 907410_7.json ├── 90960_1.json ├── 90960_2.json ├── 90960_3.json ├── 90960_4.json ├── 90960_5.json ├── 90960_6.json ├── 90960_7.json ├── 90960_8.json ├── 911042_1.json ├── 911042_2.json ├── 911042_3.json ├── 911042_4.json ├── 911042_5.json ├── 911042_6.json ├── 912074_1.json ├── 912074_2.json ├── 912074_3.json ├── 912074_4.json ├── 912074_5.json ├── 917990_1.json ├── 917990_2.json ├── 917990_3.json ├── 917990_4.json ├── 917990_5.json ├── 9181_1.json ├── 9181_10.json ├── 9181_2.json ├── 9181_3.json ├── 9181_4.json ├── 9181_5.json ├── 9181_6.json ├── 9181_7.json ├── 9181_8.json ├── 9181_9.json ├── 929321_1.json ├── 929321_2.json ├── 929321_3.json ├── 929321_4.json ├── 929321_5.json ├── 929321_6.json ├── 95528_1.json ├── 95528_2.json ├── 95528_3.json ├── 95528_4.json ├── 95528_5.json ├── 95528_6.json ├── 95853_1.json ├── 95853_2.json ├── 95853_3.json ├── 95853_4.json ├── 95853_5.json ├── 95853_6.json ├── 95853_7.json ├── 95853_8.json ├── 95853_9.json ├── 96540_1.json ├── 96540_2.json ├── 96540_3.json ├── 96540_4.json ├── 96540_5.json ├── 970374_1.json ├── 970374_2.json ├── 970374_3.json ├── 970374_4.json ├── 970374_5.json └── 970374_6.json ├── temp_data2 ├── 907410.json ├── 90960.json ├── 911042.json ├── 912074.json ├── 917990.json ├── 9181.json ├── 929321.json ├── 95528.json ├── 95853.json ├── 96540.json └── 970374.json ├── temp_data3 ├── 907410.json ├── 90960.json ├── 911042.json ├── 912074.json ├── 917990.json ├── 9181.json ├── 929321.json ├── 95528.json ├── 95853.json ├── 96540.json └── 970374.json ├── temp_data4 ├── 907410.json ├── 90960.json ├── 911042.json ├── 912074.json ├── 917990.json ├── 9181.json ├── 929321.json ├── 95528.json ├── 95853.json ├── 96540.json └── 970374.json ├── train.20181126.jsonlines ├── train.20181126.jsonlines.filtered ├── train.20181126.v4_gold_conll ├── train.py ├── tta.py ├── tta2.csv ├── tta_news_dev.csv ├── tta_result.py ├── tta_wiki_dev.csv ├── ttaresult181106.jsonlines ├── ttaresult181106.v4_gold_conll ├── ttaresult181128.jsonlines ├── ttaresult181128.v4_gold_conll ├── util.py ├── util.pyc ├── util2.py ├── word2vec.20181126.txt.filtered ├── word2vec.txt ├── word2vec.txt.pd_NER8.filtered ├── word2vec.txt.pilot2.filtered ├── word2vec_model └── 언급 특질을 이용한 Bi-LSTM 기반 한국어 상호참조해결 종단간 학습.pdf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/README.md -------------------------------------------------------------------------------- /cache_elmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/cache_elmo.py -------------------------------------------------------------------------------- /char_vocab.20181126.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/char_vocab.20181126.txt -------------------------------------------------------------------------------- /char_vocab.korean8_pd_NER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/char_vocab.korean8_pd_NER.txt -------------------------------------------------------------------------------- /character_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/character_evaluate.py -------------------------------------------------------------------------------- /conll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/conll.py -------------------------------------------------------------------------------- /coref-result181106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/coref-result181106 -------------------------------------------------------------------------------- /coref-ttaresult181106: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/coref-ttaresult181106 -------------------------------------------------------------------------------- /coref-ttaresult181128: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/coref-ttaresult181128 -------------------------------------------------------------------------------- /coref_kernels.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/coref_kernels.cc -------------------------------------------------------------------------------- /coref_kernels.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/coref_kernels.so -------------------------------------------------------------------------------- /coref_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/coref_model.py -------------------------------------------------------------------------------- /coref_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/coref_ops.py -------------------------------------------------------------------------------- /coreference.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/coreference.sh -------------------------------------------------------------------------------- /coreference_tta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/coreference_tta.sh -------------------------------------------------------------------------------- /data/dev.korean_pd_NER.jsonlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/data/dev.korean_pd_NER.jsonlines -------------------------------------------------------------------------------- /data/dev.korean_pd_NER.v4_gold_conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/data/dev.korean_pd_NER.v4_gold_conll -------------------------------------------------------------------------------- /data/dev.pilot2.jsonlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/data/dev.pilot2.jsonlines -------------------------------------------------------------------------------- /data/dev.pilot2.v4_gold_conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/data/dev.pilot2.v4_gold_conll -------------------------------------------------------------------------------- /data/ref.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/data/ref.out -------------------------------------------------------------------------------- /data/sys.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/data/sys.out -------------------------------------------------------------------------------- /data/test.korean_pd_NER.jsonlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/data/test.korean_pd_NER.jsonlines -------------------------------------------------------------------------------- /data/test.korean_pd_NER.v4_gold_conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/data/test.korean_pd_NER.v4_gold_conll -------------------------------------------------------------------------------- /data/train.korean_pd_NER.jsonlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/data/train.korean_pd_NER.jsonlines -------------------------------------------------------------------------------- /data/train.korean_pd_NER.v4_gold_conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/data/train.korean_pd_NER.v4_gold_conll -------------------------------------------------------------------------------- /data/train.pilot2.jsonlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/data/train.pilot2.jsonlines -------------------------------------------------------------------------------- /data/train.pilot2.v4_gold_conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/data/train.pilot2.v4_gold_conll -------------------------------------------------------------------------------- /data/vimrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/demo.py -------------------------------------------------------------------------------- /dev.20181126.jsonlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/dev.20181126.jsonlines -------------------------------------------------------------------------------- /dev.20181126.v4_gold_conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/dev.20181126.v4_gold_conll -------------------------------------------------------------------------------- /elmo_cache.20181126.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/elmo_cache.20181126.hdf5 -------------------------------------------------------------------------------- /elmo_cache_pd_NER8.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/elmo_cache_pd_NER8.hdf5 -------------------------------------------------------------------------------- /entity_type_kbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/entity_type_kbox -------------------------------------------------------------------------------- /etri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/etri.py -------------------------------------------------------------------------------- /etri.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/etri.pyc -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/evaluate.py -------------------------------------------------------------------------------- /experiments.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/experiments.conf -------------------------------------------------------------------------------- /filter_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/filter_embeddings.py -------------------------------------------------------------------------------- /get_char_vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/get_char_vocab.py -------------------------------------------------------------------------------- /jisi_determiner_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/jisi_determiner_list.txt -------------------------------------------------------------------------------- /jsonlines_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/jsonlines_to_json.py -------------------------------------------------------------------------------- /link_character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/link_character.py -------------------------------------------------------------------------------- /make_conll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/make_conll.py -------------------------------------------------------------------------------- /make_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/make_document.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/metrics.py -------------------------------------------------------------------------------- /minimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/minimize.py -------------------------------------------------------------------------------- /new_elmo_cache.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/new_elmo_cache.hdf5 -------------------------------------------------------------------------------- /output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/output.csv -------------------------------------------------------------------------------- /pre_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/pre_dump.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/predict.py -------------------------------------------------------------------------------- /pronoun_detect_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/pronoun_detect_2.py -------------------------------------------------------------------------------- /pronoun_lemma_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/pronoun_lemma_list.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/requirements.txt -------------------------------------------------------------------------------- /result181106.jsonlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/result181106.jsonlines -------------------------------------------------------------------------------- /result181106.v4_gold_conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/result181106.v4_gold_conll -------------------------------------------------------------------------------- /temp_data/907410_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/907410_1.json -------------------------------------------------------------------------------- /temp_data/907410_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/907410_2.json -------------------------------------------------------------------------------- /temp_data/907410_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/907410_3.json -------------------------------------------------------------------------------- /temp_data/907410_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/907410_4.json -------------------------------------------------------------------------------- /temp_data/907410_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/907410_5.json -------------------------------------------------------------------------------- /temp_data/907410_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/907410_6.json -------------------------------------------------------------------------------- /temp_data/907410_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/907410_7.json -------------------------------------------------------------------------------- /temp_data/90960_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/90960_1.json -------------------------------------------------------------------------------- /temp_data/90960_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/90960_2.json -------------------------------------------------------------------------------- /temp_data/90960_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/90960_3.json -------------------------------------------------------------------------------- /temp_data/90960_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/90960_4.json -------------------------------------------------------------------------------- /temp_data/90960_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/90960_5.json -------------------------------------------------------------------------------- /temp_data/90960_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/90960_6.json -------------------------------------------------------------------------------- /temp_data/90960_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/90960_7.json -------------------------------------------------------------------------------- /temp_data/90960_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/90960_8.json -------------------------------------------------------------------------------- /temp_data/911042_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/911042_1.json -------------------------------------------------------------------------------- /temp_data/911042_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/911042_2.json -------------------------------------------------------------------------------- /temp_data/911042_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/911042_3.json -------------------------------------------------------------------------------- /temp_data/911042_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/911042_4.json -------------------------------------------------------------------------------- /temp_data/911042_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/911042_5.json -------------------------------------------------------------------------------- /temp_data/911042_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/911042_6.json -------------------------------------------------------------------------------- /temp_data/912074_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/912074_1.json -------------------------------------------------------------------------------- /temp_data/912074_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/912074_2.json -------------------------------------------------------------------------------- /temp_data/912074_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/912074_3.json -------------------------------------------------------------------------------- /temp_data/912074_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/912074_4.json -------------------------------------------------------------------------------- /temp_data/912074_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/912074_5.json -------------------------------------------------------------------------------- /temp_data/917990_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/917990_1.json -------------------------------------------------------------------------------- /temp_data/917990_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/917990_2.json -------------------------------------------------------------------------------- /temp_data/917990_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/917990_3.json -------------------------------------------------------------------------------- /temp_data/917990_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/917990_4.json -------------------------------------------------------------------------------- /temp_data/917990_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/917990_5.json -------------------------------------------------------------------------------- /temp_data/9181_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/9181_1.json -------------------------------------------------------------------------------- /temp_data/9181_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/9181_10.json -------------------------------------------------------------------------------- /temp_data/9181_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/9181_2.json -------------------------------------------------------------------------------- /temp_data/9181_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/9181_3.json -------------------------------------------------------------------------------- /temp_data/9181_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/9181_4.json -------------------------------------------------------------------------------- /temp_data/9181_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/9181_5.json -------------------------------------------------------------------------------- /temp_data/9181_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/9181_6.json -------------------------------------------------------------------------------- /temp_data/9181_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/9181_7.json -------------------------------------------------------------------------------- /temp_data/9181_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/9181_8.json -------------------------------------------------------------------------------- /temp_data/9181_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/9181_9.json -------------------------------------------------------------------------------- /temp_data/929321_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/929321_1.json -------------------------------------------------------------------------------- /temp_data/929321_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/929321_2.json -------------------------------------------------------------------------------- /temp_data/929321_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/929321_3.json -------------------------------------------------------------------------------- /temp_data/929321_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/929321_4.json -------------------------------------------------------------------------------- /temp_data/929321_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/929321_5.json -------------------------------------------------------------------------------- /temp_data/929321_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/929321_6.json -------------------------------------------------------------------------------- /temp_data/95528_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95528_1.json -------------------------------------------------------------------------------- /temp_data/95528_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95528_2.json -------------------------------------------------------------------------------- /temp_data/95528_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95528_3.json -------------------------------------------------------------------------------- /temp_data/95528_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95528_4.json -------------------------------------------------------------------------------- /temp_data/95528_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95528_5.json -------------------------------------------------------------------------------- /temp_data/95528_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95528_6.json -------------------------------------------------------------------------------- /temp_data/95853_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95853_1.json -------------------------------------------------------------------------------- /temp_data/95853_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95853_2.json -------------------------------------------------------------------------------- /temp_data/95853_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95853_3.json -------------------------------------------------------------------------------- /temp_data/95853_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95853_4.json -------------------------------------------------------------------------------- /temp_data/95853_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95853_5.json -------------------------------------------------------------------------------- /temp_data/95853_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95853_6.json -------------------------------------------------------------------------------- /temp_data/95853_7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95853_7.json -------------------------------------------------------------------------------- /temp_data/95853_8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95853_8.json -------------------------------------------------------------------------------- /temp_data/95853_9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/95853_9.json -------------------------------------------------------------------------------- /temp_data/96540_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/96540_1.json -------------------------------------------------------------------------------- /temp_data/96540_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/96540_2.json -------------------------------------------------------------------------------- /temp_data/96540_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/96540_3.json -------------------------------------------------------------------------------- /temp_data/96540_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/96540_4.json -------------------------------------------------------------------------------- /temp_data/96540_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/96540_5.json -------------------------------------------------------------------------------- /temp_data/970374_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/970374_1.json -------------------------------------------------------------------------------- /temp_data/970374_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/970374_2.json -------------------------------------------------------------------------------- /temp_data/970374_3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/970374_3.json -------------------------------------------------------------------------------- /temp_data/970374_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/970374_4.json -------------------------------------------------------------------------------- /temp_data/970374_5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/970374_5.json -------------------------------------------------------------------------------- /temp_data/970374_6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data/970374_6.json -------------------------------------------------------------------------------- /temp_data2/907410.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data2/907410.json -------------------------------------------------------------------------------- /temp_data2/90960.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data2/90960.json -------------------------------------------------------------------------------- /temp_data2/911042.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data2/911042.json -------------------------------------------------------------------------------- /temp_data2/912074.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data2/912074.json -------------------------------------------------------------------------------- /temp_data2/917990.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data2/917990.json -------------------------------------------------------------------------------- /temp_data2/9181.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data2/9181.json -------------------------------------------------------------------------------- /temp_data2/929321.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data2/929321.json -------------------------------------------------------------------------------- /temp_data2/95528.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data2/95528.json -------------------------------------------------------------------------------- /temp_data2/95853.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data2/95853.json -------------------------------------------------------------------------------- /temp_data2/96540.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data2/96540.json -------------------------------------------------------------------------------- /temp_data2/970374.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data2/970374.json -------------------------------------------------------------------------------- /temp_data3/907410.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data3/907410.json -------------------------------------------------------------------------------- /temp_data3/90960.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data3/90960.json -------------------------------------------------------------------------------- /temp_data3/911042.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data3/911042.json -------------------------------------------------------------------------------- /temp_data3/912074.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data3/912074.json -------------------------------------------------------------------------------- /temp_data3/917990.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data3/917990.json -------------------------------------------------------------------------------- /temp_data3/9181.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data3/9181.json -------------------------------------------------------------------------------- /temp_data3/929321.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data3/929321.json -------------------------------------------------------------------------------- /temp_data3/95528.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data3/95528.json -------------------------------------------------------------------------------- /temp_data3/95853.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data3/95853.json -------------------------------------------------------------------------------- /temp_data3/96540.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data3/96540.json -------------------------------------------------------------------------------- /temp_data3/970374.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data3/970374.json -------------------------------------------------------------------------------- /temp_data4/907410.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data4/907410.json -------------------------------------------------------------------------------- /temp_data4/90960.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data4/90960.json -------------------------------------------------------------------------------- /temp_data4/911042.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data4/911042.json -------------------------------------------------------------------------------- /temp_data4/912074.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data4/912074.json -------------------------------------------------------------------------------- /temp_data4/917990.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data4/917990.json -------------------------------------------------------------------------------- /temp_data4/9181.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data4/9181.json -------------------------------------------------------------------------------- /temp_data4/929321.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data4/929321.json -------------------------------------------------------------------------------- /temp_data4/95528.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data4/95528.json -------------------------------------------------------------------------------- /temp_data4/95853.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data4/95853.json -------------------------------------------------------------------------------- /temp_data4/96540.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data4/96540.json -------------------------------------------------------------------------------- /temp_data4/970374.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/temp_data4/970374.json -------------------------------------------------------------------------------- /train.20181126.jsonlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/train.20181126.jsonlines -------------------------------------------------------------------------------- /train.20181126.jsonlines.filtered: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /train.20181126.v4_gold_conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/train.20181126.v4_gold_conll -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/train.py -------------------------------------------------------------------------------- /tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/tta.py -------------------------------------------------------------------------------- /tta2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/tta2.csv -------------------------------------------------------------------------------- /tta_news_dev.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/tta_news_dev.csv -------------------------------------------------------------------------------- /tta_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/tta_result.py -------------------------------------------------------------------------------- /tta_wiki_dev.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/tta_wiki_dev.csv -------------------------------------------------------------------------------- /ttaresult181106.jsonlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/ttaresult181106.jsonlines -------------------------------------------------------------------------------- /ttaresult181106.v4_gold_conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/ttaresult181106.v4_gold_conll -------------------------------------------------------------------------------- /ttaresult181128.jsonlines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/ttaresult181128.jsonlines -------------------------------------------------------------------------------- /ttaresult181128.v4_gold_conll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/ttaresult181128.v4_gold_conll -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/util.py -------------------------------------------------------------------------------- /util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/util.pyc -------------------------------------------------------------------------------- /util2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/util2.py -------------------------------------------------------------------------------- /word2vec.20181126.txt.filtered: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /word2vec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/word2vec.txt -------------------------------------------------------------------------------- /word2vec.txt.pd_NER8.filtered: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/word2vec.txt.pd_NER8.filtered -------------------------------------------------------------------------------- /word2vec.txt.pilot2.filtered: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /word2vec_model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/word2vec_model -------------------------------------------------------------------------------- /언급 특질을 이용한 Bi-LSTM 기반 한국어 상호참조해결 종단간 학습.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shingiyeon/KoreanCoreferenceResolution/HEAD/언급 특질을 이용한 Bi-LSTM 기반 한국어 상호참조해결 종단간 학습.pdf --------------------------------------------------------------------------------