├── README.md ├── baseline_results ├── ablation_free_morph │ ├── KoBART_free_morph.txt │ ├── KoGPT2_free_morph.txt │ ├── mBART_50_free_morph.txt │ └── mT5_large_free_morph.txt ├── ablation_noun_and_verb │ ├── KoBART_noun_and_verb.txt │ ├── KoGPT2_noun_and_verb.txt │ ├── mBART_50_noun_and_verb.txt │ └── mT5_large_noun_and_verb.txt ├── ablation_only_dialogue_summary │ ├── KoBART_only_dialogue_summary.txt │ ├── KoGPT2_only_dialogue_summary.txt │ ├── mBART_50_only_dialogue_summary.txt │ └── mT5_large_only_dialogue_summary.txt ├── ablation_only_image_captions │ ├── KoBART_only_image_captions.txt │ ├── KoGPT2_only_image_captions.txt │ ├── mBART_50_only_image_captions.txt │ └── mT5_large_only_image_captions.txt ├── high_level_commonsense_reasoning │ ├── KoBART_high_level_commonsense_reasoning_seed42.txt │ ├── KoBART_high_level_commonsense_reasoning_seed52.txt │ ├── KoBART_high_level_commonsense_reasoning_seed62.txt │ ├── KoBART_high_level_commonsense_reasoning_seed72.txt │ ├── KoBART_high_level_commonsense_reasoning_seed82.txt │ ├── KoGPT2_high_level_commonsense_reasoning_seed42.txt │ ├── KoGPT2_high_level_commonsense_reasoning_seed52.txt │ ├── KoGPT2_high_level_commonsense_reasoning_seed62.txt │ ├── KoGPT2_high_level_commonsense_reasoning_seed72.txt │ ├── KoGPT2_high_level_commonsense_reasoning_seed82.txt │ ├── mBART_25_high_level_commonsense_reasoning_seed42.txt │ ├── mBART_25_high_level_commonsense_reasoning_seed52.txt │ ├── mBART_25_high_level_commonsense_reasoning_seed62.txt │ ├── mBART_25_high_level_commonsense_reasoning_seed72.txt │ ├── mBART_25_high_level_commonsense_reasoning_seed82.txt │ ├── mBART_50_high_level_commonsense_reasoning_seed42.txt │ ├── mBART_50_high_level_commonsense_reasoning_seed52.txt │ ├── mBART_50_high_level_commonsense_reasoning_seed62.txt │ ├── mBART_50_high_level_commonsense_reasoning_seed72.txt │ ├── mBART_50_high_level_commonsense_reasoning_seed82.txt │ ├── mT5_base_high_level_commonsense_reasoning_seed42.txt │ ├── mT5_base_high_level_commonsense_reasoning_seed52.txt │ ├── mT5_base_high_level_commonsense_reasoning_seed62.txt │ ├── mT5_base_high_level_commonsense_reasoning_seed72.txt │ ├── mT5_base_high_level_commonsense_reasoning_seed82.txt │ ├── mT5_large_high_level_commonsense_reasoning_seed42.txt │ ├── mT5_large_high_level_commonsense_reasoning_seed52.txt │ ├── mT5_large_high_level_commonsense_reasoning_seed62.txt │ ├── mT5_large_high_level_commonsense_reasoning_seed72.txt │ ├── mT5_large_high_level_commonsense_reasoning_seed82.txt │ ├── mT5_small_high_level_commonsense_reasoning_seed42.txt │ ├── mT5_small_high_level_commonsense_reasoning_seed52.txt │ ├── mT5_small_high_level_commonsense_reasoning_seed62.txt │ ├── mT5_small_high_level_commonsense_reasoning_seed72.txt │ └── mT5_small_high_level_commonsense_reasoning_seed82.txt ├── quantitative_eval │ ├── KoBART_quantitative.txt │ ├── KoGPT2_quantitative.txt │ ├── mBART_50_quantitative.txt │ ├── mBART_quantitative.txt │ ├── mT5_base_quantitative.txt │ ├── mT5_large_quantitative.txt │ └── mT5_small_quantitative.txt └── reformulated_commongen │ ├── KoBART_reformulated_commongen.txt │ ├── KoGPT2_reformulated_commongen.txt │ ├── mBART_25_reformulated_commongen.txt │ ├── mBART_50_reformulated_commongen.txt │ ├── mT5_base_reformulated_commongen.txt │ ├── mT5_large_reformulated_commongen.txt │ └── mT5_small_reformulated_commongen.txt ├── dataset ├── ablation_1 │ ├── korean_commongen_free_morpheme_test.json │ ├── korean_commongen_free_morpheme_test.txt │ ├── korean_commongen_free_morpheme_train.json │ ├── korean_commongen_free_morpheme_train.txt │ ├── korean_commongen_only_noun_verb_test.json │ ├── korean_commongen_only_noun_verb_test.txt │ ├── korean_commongen_only_noun_verb_train.json │ └── korean_commongen_only_noun_verb_train.txt ├── ablation_2 │ ├── korean_commongen_dialogue_summary_only_train.json │ ├── korean_commongen_dialogue_summary_only_train.txt │ ├── korean_commongen_image_only_train.json │ └── korean_commongen_image_only_train.txt ├── high_level_commonsense_reasoning │ ├── high_level_korean_commongen_train_seed_42.json │ ├── high_level_korean_commongen_train_seed_42.txt │ ├── high_level_korean_commongen_train_seed_52.json │ ├── high_level_korean_commongen_train_seed_52.txt │ ├── high_level_korean_commongen_train_seed_62.json │ ├── high_level_korean_commongen_train_seed_62.txt │ ├── high_level_korean_commongen_train_seed_72.json │ ├── high_level_korean_commongen_train_seed_72.txt │ ├── high_level_korean_commongen_train_seed_82.json │ └── high_level_korean_commongen_train_seed_82.txt ├── korean_commongen_official_test.json ├── korean_commongen_official_test.txt ├── korean_commongen_official_train.json ├── korean_commongen_official_train.txt └── reformulated_commongen │ ├── korean_commongen_reformulated_test.json │ └── korean_commongen_reformulated_test.txt ├── eval_metrics ├── __init__.py ├── __pycache__ │ └── __init__.cpython-37.pyc ├── compute_agreement.py ├── data │ └── prediction-20211122T040116Z-001.zip ├── eval.py ├── eval_korouge.py ├── eval_korouge_main.py ├── human_performance.py ├── model_pairs.tsv ├── ratings_dev.jsonl ├── ratings_train.jsonl └── rouge │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── korouge.cpython-37.pyc │ └── korouge.cpython-38.pyc │ ├── korouge.py │ └── rouge.py ├── human_evaluations ├── kobart │ ├── kobarts_commonsense_korean_commongen.txt │ ├── kobarts_commonsense_reform.txt │ ├── kobarts_factuality_korean_commongen.txt │ ├── kobarts_factuality_reform.txt │ ├── kobarts_fluency_korean_commongen.txt │ ├── kobarts_fluency_reform.txt │ ├── kobarts_grammar_korean_commongen.txt │ └── kobarts_grammar_reform.txt ├── kogpt2 │ ├── gpt2s_commonsense_korean_commongen.txt │ ├── gpt2s_commonsense_reform.txt │ ├── gpt2s_factuality_korean_commongen.txt │ ├── gpt2s_factuality_reform.txt │ ├── gpt2s_fluency_korean_commongen.txt │ ├── gpt2s_fluency_reform.txt │ ├── gpt2s_grammar_korean_commongen.txt │ └── gpt2s_grammar_reform.txt ├── mbart-50 │ ├── mbarts_commonsense_korean_commongen.txt │ ├── mbarts_commonsense_reform.txt │ ├── mbarts_factuality_korean_commongen.txt │ ├── mbarts_factuality_reform.txt │ ├── mbarts_fluency_korean_commongen.txt │ ├── mbarts_fluency_reform.txt │ ├── mbarts_grammar_korean_commongen.txt │ └── mbarts_grammar_reform.txt └── mt5-large │ ├── mt5s_commonsense_korean_commongen.txt │ ├── mt5s_commonsense_reform.txt │ ├── mt5s_factuality_korean_commongen.txt │ ├── mt5s_factuality_reform.txt │ ├── mt5s_fluency_korean_commongen.txt │ ├── mt5s_fluency_reform.txt │ ├── mt5s_grammar_korean_commongen.txt │ └── mt5s_grammar_reform.txt ├── korean_commongen_evaluation_multi_ref.py ├── requirements_eval.txt ├── run_language_modeling_KoBART.py └── semantic_eval ├── F.html ├── KoBERTScore.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── entry_points.txt ├── requires.txt └── top_level.txt ├── KoBERTScore ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── about.cpython-37.pyc │ ├── about.cpython-38.pyc │ ├── score.cpython-37.pyc │ ├── score.cpython-38.pyc │ ├── tasks.cpython-37.pyc │ └── tasks.cpython-38.pyc ├── about.py ├── cli.py ├── score.py └── tasks.py ├── MANIFEST.in ├── P.html ├── R.html ├── README.md ├── RPF.html ├── build └── lib │ └── KoBERTScore │ ├── __init__.py │ ├── about.py │ ├── cli.py │ ├── score.py │ └── tasks.py ├── data ├── commongen │ ├── kobart_commongen_test_9600.txt │ ├── kobart_commongen_test_ver2_total_real_morph.txt │ ├── kogpt2_commongen_test_9600.txt │ ├── mbart_commongen_test_9600.txt │ └── mt5_commongen_test_9600.txt └── kommongen │ ├── kobart_commongen_test_9600.txt │ ├── kogpt2_commongen_test_9600.txt │ ├── mbart_commongen_test_9600.txt │ ├── mt5_commongen_test_9600.txt │ └── tmp_kommongen_total_1k.txt ├── dist └── KoBERTScore-1.0.0-py3.8.egg ├── experiments ├── best_layers │ ├── README.md │ ├── distilkobert.png │ ├── find_best_layers.sh │ ├── kcbert-base.png │ ├── kobert.png │ └── koelectra-base-v2-discriminator.png ├── l2_norm │ ├── README.md │ ├── compute_l2_norm.sh │ ├── distilkobert │ ├── kcbert-base │ ├── kobert │ └── koelectra-base-v2-discriminator └── rescale_base │ ├── README.md │ ├── distilkobert │ ├── find_rescale_base.sh │ ├── kcbert-base │ ├── kobert │ └── koelectra-base-v2-discriminator ├── requirements.txt ├── resources ├── bertscore_pairwise_cosine.png └── kcbert_korsts.png ├── setup.py ├── tests ├── README.md └── test_utils.py ├── tmp_main.py └── tools └── lint.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/README.md -------------------------------------------------------------------------------- /baseline_results/ablation_free_morph/KoBART_free_morph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_free_morph/KoBART_free_morph.txt -------------------------------------------------------------------------------- /baseline_results/ablation_free_morph/KoGPT2_free_morph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_free_morph/KoGPT2_free_morph.txt -------------------------------------------------------------------------------- /baseline_results/ablation_free_morph/mBART_50_free_morph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_free_morph/mBART_50_free_morph.txt -------------------------------------------------------------------------------- /baseline_results/ablation_free_morph/mT5_large_free_morph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_free_morph/mT5_large_free_morph.txt -------------------------------------------------------------------------------- /baseline_results/ablation_noun_and_verb/KoBART_noun_and_verb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_noun_and_verb/KoBART_noun_and_verb.txt -------------------------------------------------------------------------------- /baseline_results/ablation_noun_and_verb/KoGPT2_noun_and_verb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_noun_and_verb/KoGPT2_noun_and_verb.txt -------------------------------------------------------------------------------- /baseline_results/ablation_noun_and_verb/mBART_50_noun_and_verb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_noun_and_verb/mBART_50_noun_and_verb.txt -------------------------------------------------------------------------------- /baseline_results/ablation_noun_and_verb/mT5_large_noun_and_verb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_noun_and_verb/mT5_large_noun_and_verb.txt -------------------------------------------------------------------------------- /baseline_results/ablation_only_dialogue_summary/KoBART_only_dialogue_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_only_dialogue_summary/KoBART_only_dialogue_summary.txt -------------------------------------------------------------------------------- /baseline_results/ablation_only_dialogue_summary/KoGPT2_only_dialogue_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_only_dialogue_summary/KoGPT2_only_dialogue_summary.txt -------------------------------------------------------------------------------- /baseline_results/ablation_only_dialogue_summary/mBART_50_only_dialogue_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_only_dialogue_summary/mBART_50_only_dialogue_summary.txt -------------------------------------------------------------------------------- /baseline_results/ablation_only_dialogue_summary/mT5_large_only_dialogue_summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_only_dialogue_summary/mT5_large_only_dialogue_summary.txt -------------------------------------------------------------------------------- /baseline_results/ablation_only_image_captions/KoBART_only_image_captions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_only_image_captions/KoBART_only_image_captions.txt -------------------------------------------------------------------------------- /baseline_results/ablation_only_image_captions/KoGPT2_only_image_captions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_only_image_captions/KoGPT2_only_image_captions.txt -------------------------------------------------------------------------------- /baseline_results/ablation_only_image_captions/mBART_50_only_image_captions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_only_image_captions/mBART_50_only_image_captions.txt -------------------------------------------------------------------------------- /baseline_results/ablation_only_image_captions/mT5_large_only_image_captions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/ablation_only_image_captions/mT5_large_only_image_captions.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/KoBART_high_level_commonsense_reasoning_seed42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/KoBART_high_level_commonsense_reasoning_seed42.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/KoBART_high_level_commonsense_reasoning_seed52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/KoBART_high_level_commonsense_reasoning_seed52.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/KoBART_high_level_commonsense_reasoning_seed62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/KoBART_high_level_commonsense_reasoning_seed62.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/KoBART_high_level_commonsense_reasoning_seed72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/KoBART_high_level_commonsense_reasoning_seed72.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/KoBART_high_level_commonsense_reasoning_seed82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/KoBART_high_level_commonsense_reasoning_seed82.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/KoGPT2_high_level_commonsense_reasoning_seed42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/KoGPT2_high_level_commonsense_reasoning_seed42.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/KoGPT2_high_level_commonsense_reasoning_seed52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/KoGPT2_high_level_commonsense_reasoning_seed52.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/KoGPT2_high_level_commonsense_reasoning_seed62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/KoGPT2_high_level_commonsense_reasoning_seed62.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/KoGPT2_high_level_commonsense_reasoning_seed72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/KoGPT2_high_level_commonsense_reasoning_seed72.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/KoGPT2_high_level_commonsense_reasoning_seed82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/KoGPT2_high_level_commonsense_reasoning_seed82.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mBART_25_high_level_commonsense_reasoning_seed42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mBART_25_high_level_commonsense_reasoning_seed42.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mBART_25_high_level_commonsense_reasoning_seed52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mBART_25_high_level_commonsense_reasoning_seed52.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mBART_25_high_level_commonsense_reasoning_seed62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mBART_25_high_level_commonsense_reasoning_seed62.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mBART_25_high_level_commonsense_reasoning_seed72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mBART_25_high_level_commonsense_reasoning_seed72.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mBART_25_high_level_commonsense_reasoning_seed82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mBART_25_high_level_commonsense_reasoning_seed82.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mBART_50_high_level_commonsense_reasoning_seed42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mBART_50_high_level_commonsense_reasoning_seed42.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mBART_50_high_level_commonsense_reasoning_seed52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mBART_50_high_level_commonsense_reasoning_seed52.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mBART_50_high_level_commonsense_reasoning_seed62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mBART_50_high_level_commonsense_reasoning_seed62.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mBART_50_high_level_commonsense_reasoning_seed72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mBART_50_high_level_commonsense_reasoning_seed72.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mBART_50_high_level_commonsense_reasoning_seed82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mBART_50_high_level_commonsense_reasoning_seed82.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_base_high_level_commonsense_reasoning_seed42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_base_high_level_commonsense_reasoning_seed42.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_base_high_level_commonsense_reasoning_seed52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_base_high_level_commonsense_reasoning_seed52.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_base_high_level_commonsense_reasoning_seed62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_base_high_level_commonsense_reasoning_seed62.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_base_high_level_commonsense_reasoning_seed72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_base_high_level_commonsense_reasoning_seed72.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_base_high_level_commonsense_reasoning_seed82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_base_high_level_commonsense_reasoning_seed82.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_large_high_level_commonsense_reasoning_seed42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_large_high_level_commonsense_reasoning_seed42.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_large_high_level_commonsense_reasoning_seed52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_large_high_level_commonsense_reasoning_seed52.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_large_high_level_commonsense_reasoning_seed62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_large_high_level_commonsense_reasoning_seed62.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_large_high_level_commonsense_reasoning_seed72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_large_high_level_commonsense_reasoning_seed72.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_large_high_level_commonsense_reasoning_seed82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_large_high_level_commonsense_reasoning_seed82.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_small_high_level_commonsense_reasoning_seed42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_small_high_level_commonsense_reasoning_seed42.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_small_high_level_commonsense_reasoning_seed52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_small_high_level_commonsense_reasoning_seed52.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_small_high_level_commonsense_reasoning_seed62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_small_high_level_commonsense_reasoning_seed62.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_small_high_level_commonsense_reasoning_seed72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_small_high_level_commonsense_reasoning_seed72.txt -------------------------------------------------------------------------------- /baseline_results/high_level_commonsense_reasoning/mT5_small_high_level_commonsense_reasoning_seed82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/high_level_commonsense_reasoning/mT5_small_high_level_commonsense_reasoning_seed82.txt -------------------------------------------------------------------------------- /baseline_results/quantitative_eval/KoBART_quantitative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/quantitative_eval/KoBART_quantitative.txt -------------------------------------------------------------------------------- /baseline_results/quantitative_eval/KoGPT2_quantitative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/quantitative_eval/KoGPT2_quantitative.txt -------------------------------------------------------------------------------- /baseline_results/quantitative_eval/mBART_50_quantitative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/quantitative_eval/mBART_50_quantitative.txt -------------------------------------------------------------------------------- /baseline_results/quantitative_eval/mBART_quantitative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/quantitative_eval/mBART_quantitative.txt -------------------------------------------------------------------------------- /baseline_results/quantitative_eval/mT5_base_quantitative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/quantitative_eval/mT5_base_quantitative.txt -------------------------------------------------------------------------------- /baseline_results/quantitative_eval/mT5_large_quantitative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/quantitative_eval/mT5_large_quantitative.txt -------------------------------------------------------------------------------- /baseline_results/quantitative_eval/mT5_small_quantitative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/quantitative_eval/mT5_small_quantitative.txt -------------------------------------------------------------------------------- /baseline_results/reformulated_commongen/KoBART_reformulated_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/reformulated_commongen/KoBART_reformulated_commongen.txt -------------------------------------------------------------------------------- /baseline_results/reformulated_commongen/KoGPT2_reformulated_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/reformulated_commongen/KoGPT2_reformulated_commongen.txt -------------------------------------------------------------------------------- /baseline_results/reformulated_commongen/mBART_25_reformulated_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/reformulated_commongen/mBART_25_reformulated_commongen.txt -------------------------------------------------------------------------------- /baseline_results/reformulated_commongen/mBART_50_reformulated_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/reformulated_commongen/mBART_50_reformulated_commongen.txt -------------------------------------------------------------------------------- /baseline_results/reformulated_commongen/mT5_base_reformulated_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/reformulated_commongen/mT5_base_reformulated_commongen.txt -------------------------------------------------------------------------------- /baseline_results/reformulated_commongen/mT5_large_reformulated_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/reformulated_commongen/mT5_large_reformulated_commongen.txt -------------------------------------------------------------------------------- /baseline_results/reformulated_commongen/mT5_small_reformulated_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/baseline_results/reformulated_commongen/mT5_small_reformulated_commongen.txt -------------------------------------------------------------------------------- /dataset/ablation_1/korean_commongen_free_morpheme_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/ablation_1/korean_commongen_free_morpheme_test.json -------------------------------------------------------------------------------- /dataset/ablation_1/korean_commongen_free_morpheme_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/ablation_1/korean_commongen_free_morpheme_test.txt -------------------------------------------------------------------------------- /dataset/ablation_1/korean_commongen_free_morpheme_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/ablation_1/korean_commongen_free_morpheme_train.json -------------------------------------------------------------------------------- /dataset/ablation_1/korean_commongen_free_morpheme_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/ablation_1/korean_commongen_free_morpheme_train.txt -------------------------------------------------------------------------------- /dataset/ablation_1/korean_commongen_only_noun_verb_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/ablation_1/korean_commongen_only_noun_verb_test.json -------------------------------------------------------------------------------- /dataset/ablation_1/korean_commongen_only_noun_verb_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/ablation_1/korean_commongen_only_noun_verb_test.txt -------------------------------------------------------------------------------- /dataset/ablation_1/korean_commongen_only_noun_verb_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/ablation_1/korean_commongen_only_noun_verb_train.json -------------------------------------------------------------------------------- /dataset/ablation_1/korean_commongen_only_noun_verb_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/ablation_1/korean_commongen_only_noun_verb_train.txt -------------------------------------------------------------------------------- /dataset/ablation_2/korean_commongen_dialogue_summary_only_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/ablation_2/korean_commongen_dialogue_summary_only_train.json -------------------------------------------------------------------------------- /dataset/ablation_2/korean_commongen_dialogue_summary_only_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/ablation_2/korean_commongen_dialogue_summary_only_train.txt -------------------------------------------------------------------------------- /dataset/ablation_2/korean_commongen_image_only_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/ablation_2/korean_commongen_image_only_train.json -------------------------------------------------------------------------------- /dataset/ablation_2/korean_commongen_image_only_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/ablation_2/korean_commongen_image_only_train.txt -------------------------------------------------------------------------------- /dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_42.json -------------------------------------------------------------------------------- /dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_42.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_42.txt -------------------------------------------------------------------------------- /dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_52.json -------------------------------------------------------------------------------- /dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_52.txt -------------------------------------------------------------------------------- /dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_62.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_62.json -------------------------------------------------------------------------------- /dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_62.txt -------------------------------------------------------------------------------- /dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_72.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_72.json -------------------------------------------------------------------------------- /dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_72.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_72.txt -------------------------------------------------------------------------------- /dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_82.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_82.json -------------------------------------------------------------------------------- /dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/high_level_commonsense_reasoning/high_level_korean_commongen_train_seed_82.txt -------------------------------------------------------------------------------- /dataset/korean_commongen_official_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/korean_commongen_official_test.json -------------------------------------------------------------------------------- /dataset/korean_commongen_official_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/korean_commongen_official_test.txt -------------------------------------------------------------------------------- /dataset/korean_commongen_official_train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/korean_commongen_official_train.json -------------------------------------------------------------------------------- /dataset/korean_commongen_official_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/korean_commongen_official_train.txt -------------------------------------------------------------------------------- /dataset/reformulated_commongen/korean_commongen_reformulated_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/reformulated_commongen/korean_commongen_reformulated_test.json -------------------------------------------------------------------------------- /dataset/reformulated_commongen/korean_commongen_reformulated_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/dataset/reformulated_commongen/korean_commongen_reformulated_test.txt -------------------------------------------------------------------------------- /eval_metrics/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /eval_metrics/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /eval_metrics/compute_agreement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/compute_agreement.py -------------------------------------------------------------------------------- /eval_metrics/data/prediction-20211122T040116Z-001.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/data/prediction-20211122T040116Z-001.zip -------------------------------------------------------------------------------- /eval_metrics/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/eval.py -------------------------------------------------------------------------------- /eval_metrics/eval_korouge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/eval_korouge.py -------------------------------------------------------------------------------- /eval_metrics/eval_korouge_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/eval_korouge_main.py -------------------------------------------------------------------------------- /eval_metrics/human_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/human_performance.py -------------------------------------------------------------------------------- /eval_metrics/model_pairs.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/model_pairs.tsv -------------------------------------------------------------------------------- /eval_metrics/ratings_dev.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/ratings_dev.jsonl -------------------------------------------------------------------------------- /eval_metrics/ratings_train.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/ratings_train.jsonl -------------------------------------------------------------------------------- /eval_metrics/rouge/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'vrama91' 2 | -------------------------------------------------------------------------------- /eval_metrics/rouge/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/rouge/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /eval_metrics/rouge/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/rouge/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /eval_metrics/rouge/__pycache__/korouge.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/rouge/__pycache__/korouge.cpython-37.pyc -------------------------------------------------------------------------------- /eval_metrics/rouge/__pycache__/korouge.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/rouge/__pycache__/korouge.cpython-38.pyc -------------------------------------------------------------------------------- /eval_metrics/rouge/korouge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/rouge/korouge.py -------------------------------------------------------------------------------- /eval_metrics/rouge/rouge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/eval_metrics/rouge/rouge.py -------------------------------------------------------------------------------- /human_evaluations/kobart/kobarts_commonsense_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kobart/kobarts_commonsense_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/kobart/kobarts_commonsense_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kobart/kobarts_commonsense_reform.txt -------------------------------------------------------------------------------- /human_evaluations/kobart/kobarts_factuality_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kobart/kobarts_factuality_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/kobart/kobarts_factuality_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kobart/kobarts_factuality_reform.txt -------------------------------------------------------------------------------- /human_evaluations/kobart/kobarts_fluency_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kobart/kobarts_fluency_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/kobart/kobarts_fluency_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kobart/kobarts_fluency_reform.txt -------------------------------------------------------------------------------- /human_evaluations/kobart/kobarts_grammar_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kobart/kobarts_grammar_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/kobart/kobarts_grammar_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kobart/kobarts_grammar_reform.txt -------------------------------------------------------------------------------- /human_evaluations/kogpt2/gpt2s_commonsense_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kogpt2/gpt2s_commonsense_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/kogpt2/gpt2s_commonsense_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kogpt2/gpt2s_commonsense_reform.txt -------------------------------------------------------------------------------- /human_evaluations/kogpt2/gpt2s_factuality_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kogpt2/gpt2s_factuality_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/kogpt2/gpt2s_factuality_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kogpt2/gpt2s_factuality_reform.txt -------------------------------------------------------------------------------- /human_evaluations/kogpt2/gpt2s_fluency_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kogpt2/gpt2s_fluency_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/kogpt2/gpt2s_fluency_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kogpt2/gpt2s_fluency_reform.txt -------------------------------------------------------------------------------- /human_evaluations/kogpt2/gpt2s_grammar_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kogpt2/gpt2s_grammar_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/kogpt2/gpt2s_grammar_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/kogpt2/gpt2s_grammar_reform.txt -------------------------------------------------------------------------------- /human_evaluations/mbart-50/mbarts_commonsense_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mbart-50/mbarts_commonsense_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/mbart-50/mbarts_commonsense_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mbart-50/mbarts_commonsense_reform.txt -------------------------------------------------------------------------------- /human_evaluations/mbart-50/mbarts_factuality_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mbart-50/mbarts_factuality_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/mbart-50/mbarts_factuality_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mbart-50/mbarts_factuality_reform.txt -------------------------------------------------------------------------------- /human_evaluations/mbart-50/mbarts_fluency_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mbart-50/mbarts_fluency_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/mbart-50/mbarts_fluency_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mbart-50/mbarts_fluency_reform.txt -------------------------------------------------------------------------------- /human_evaluations/mbart-50/mbarts_grammar_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mbart-50/mbarts_grammar_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/mbart-50/mbarts_grammar_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mbart-50/mbarts_grammar_reform.txt -------------------------------------------------------------------------------- /human_evaluations/mt5-large/mt5s_commonsense_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mt5-large/mt5s_commonsense_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/mt5-large/mt5s_commonsense_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mt5-large/mt5s_commonsense_reform.txt -------------------------------------------------------------------------------- /human_evaluations/mt5-large/mt5s_factuality_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mt5-large/mt5s_factuality_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/mt5-large/mt5s_factuality_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mt5-large/mt5s_factuality_reform.txt -------------------------------------------------------------------------------- /human_evaluations/mt5-large/mt5s_fluency_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mt5-large/mt5s_fluency_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/mt5-large/mt5s_fluency_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mt5-large/mt5s_fluency_reform.txt -------------------------------------------------------------------------------- /human_evaluations/mt5-large/mt5s_grammar_korean_commongen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mt5-large/mt5s_grammar_korean_commongen.txt -------------------------------------------------------------------------------- /human_evaluations/mt5-large/mt5s_grammar_reform.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/human_evaluations/mt5-large/mt5s_grammar_reform.txt -------------------------------------------------------------------------------- /korean_commongen_evaluation_multi_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/korean_commongen_evaluation_multi_ref.py -------------------------------------------------------------------------------- /requirements_eval.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/requirements_eval.txt -------------------------------------------------------------------------------- /run_language_modeling_KoBART.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/run_language_modeling_KoBART.py -------------------------------------------------------------------------------- /semantic_eval/F.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/F.html -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore.egg-info/PKG-INFO -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore.egg-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore.egg-info/entry_points.txt -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore.egg-info/requires.txt -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | KoBERTScore 2 | -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/__init__.py -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/__pycache__/about.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/__pycache__/about.cpython-37.pyc -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/__pycache__/about.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/__pycache__/about.cpython-38.pyc -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/__pycache__/score.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/__pycache__/score.cpython-37.pyc -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/__pycache__/score.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/__pycache__/score.cpython-38.pyc -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/__pycache__/tasks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/__pycache__/tasks.cpython-37.pyc -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/__pycache__/tasks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/__pycache__/tasks.cpython-38.pyc -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/about.py -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/cli.py -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/score.py -------------------------------------------------------------------------------- /semantic_eval/KoBERTScore/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/KoBERTScore/tasks.py -------------------------------------------------------------------------------- /semantic_eval/MANIFEST.in: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /semantic_eval/P.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/P.html -------------------------------------------------------------------------------- /semantic_eval/R.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/R.html -------------------------------------------------------------------------------- /semantic_eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/README.md -------------------------------------------------------------------------------- /semantic_eval/RPF.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/RPF.html -------------------------------------------------------------------------------- /semantic_eval/build/lib/KoBERTScore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/build/lib/KoBERTScore/__init__.py -------------------------------------------------------------------------------- /semantic_eval/build/lib/KoBERTScore/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/build/lib/KoBERTScore/about.py -------------------------------------------------------------------------------- /semantic_eval/build/lib/KoBERTScore/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/build/lib/KoBERTScore/cli.py -------------------------------------------------------------------------------- /semantic_eval/build/lib/KoBERTScore/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/build/lib/KoBERTScore/score.py -------------------------------------------------------------------------------- /semantic_eval/build/lib/KoBERTScore/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/build/lib/KoBERTScore/tasks.py -------------------------------------------------------------------------------- /semantic_eval/data/commongen/kobart_commongen_test_9600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/data/commongen/kobart_commongen_test_9600.txt -------------------------------------------------------------------------------- /semantic_eval/data/commongen/kobart_commongen_test_ver2_total_real_morph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/data/commongen/kobart_commongen_test_ver2_total_real_morph.txt -------------------------------------------------------------------------------- /semantic_eval/data/commongen/kogpt2_commongen_test_9600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/data/commongen/kogpt2_commongen_test_9600.txt -------------------------------------------------------------------------------- /semantic_eval/data/commongen/mbart_commongen_test_9600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/data/commongen/mbart_commongen_test_9600.txt -------------------------------------------------------------------------------- /semantic_eval/data/commongen/mt5_commongen_test_9600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/data/commongen/mt5_commongen_test_9600.txt -------------------------------------------------------------------------------- /semantic_eval/data/kommongen/kobart_commongen_test_9600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/data/kommongen/kobart_commongen_test_9600.txt -------------------------------------------------------------------------------- /semantic_eval/data/kommongen/kogpt2_commongen_test_9600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/data/kommongen/kogpt2_commongen_test_9600.txt -------------------------------------------------------------------------------- /semantic_eval/data/kommongen/mbart_commongen_test_9600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/data/kommongen/mbart_commongen_test_9600.txt -------------------------------------------------------------------------------- /semantic_eval/data/kommongen/mt5_commongen_test_9600.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/data/kommongen/mt5_commongen_test_9600.txt -------------------------------------------------------------------------------- /semantic_eval/data/kommongen/tmp_kommongen_total_1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/data/kommongen/tmp_kommongen_total_1k.txt -------------------------------------------------------------------------------- /semantic_eval/dist/KoBERTScore-1.0.0-py3.8.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/dist/KoBERTScore-1.0.0-py3.8.egg -------------------------------------------------------------------------------- /semantic_eval/experiments/best_layers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/best_layers/README.md -------------------------------------------------------------------------------- /semantic_eval/experiments/best_layers/distilkobert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/best_layers/distilkobert.png -------------------------------------------------------------------------------- /semantic_eval/experiments/best_layers/find_best_layers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/best_layers/find_best_layers.sh -------------------------------------------------------------------------------- /semantic_eval/experiments/best_layers/kcbert-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/best_layers/kcbert-base.png -------------------------------------------------------------------------------- /semantic_eval/experiments/best_layers/kobert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/best_layers/kobert.png -------------------------------------------------------------------------------- /semantic_eval/experiments/best_layers/koelectra-base-v2-discriminator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/best_layers/koelectra-base-v2-discriminator.png -------------------------------------------------------------------------------- /semantic_eval/experiments/l2_norm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/l2_norm/README.md -------------------------------------------------------------------------------- /semantic_eval/experiments/l2_norm/compute_l2_norm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/l2_norm/compute_l2_norm.sh -------------------------------------------------------------------------------- /semantic_eval/experiments/l2_norm/distilkobert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/l2_norm/distilkobert -------------------------------------------------------------------------------- /semantic_eval/experiments/l2_norm/kcbert-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/l2_norm/kcbert-base -------------------------------------------------------------------------------- /semantic_eval/experiments/l2_norm/kobert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/l2_norm/kobert -------------------------------------------------------------------------------- /semantic_eval/experiments/l2_norm/koelectra-base-v2-discriminator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/l2_norm/koelectra-base-v2-discriminator -------------------------------------------------------------------------------- /semantic_eval/experiments/rescale_base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/rescale_base/README.md -------------------------------------------------------------------------------- /semantic_eval/experiments/rescale_base/distilkobert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/rescale_base/distilkobert -------------------------------------------------------------------------------- /semantic_eval/experiments/rescale_base/find_rescale_base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/rescale_base/find_rescale_base.sh -------------------------------------------------------------------------------- /semantic_eval/experiments/rescale_base/kcbert-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/rescale_base/kcbert-base -------------------------------------------------------------------------------- /semantic_eval/experiments/rescale_base/kobert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/rescale_base/kobert -------------------------------------------------------------------------------- /semantic_eval/experiments/rescale_base/koelectra-base-v2-discriminator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/experiments/rescale_base/koelectra-base-v2-discriminator -------------------------------------------------------------------------------- /semantic_eval/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/requirements.txt -------------------------------------------------------------------------------- /semantic_eval/resources/bertscore_pairwise_cosine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/resources/bertscore_pairwise_cosine.png -------------------------------------------------------------------------------- /semantic_eval/resources/kcbert_korsts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/resources/kcbert_korsts.png -------------------------------------------------------------------------------- /semantic_eval/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/setup.py -------------------------------------------------------------------------------- /semantic_eval/tests/README.md: -------------------------------------------------------------------------------- 1 | # Pytest directory 2 | 3 | -------------------------------------------------------------------------------- /semantic_eval/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/tests/test_utils.py -------------------------------------------------------------------------------- /semantic_eval/tmp_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/tmp_main.py -------------------------------------------------------------------------------- /semantic_eval/tools/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/J-Seo/Korean-CommonGen/HEAD/semantic_eval/tools/lint.sh --------------------------------------------------------------------------------