├── README.md ├── ccf_2020_qa_match_concat.py ├── ccf_2020_qa_match_pair.py ├── ccf_2020_qa_match_pet.py ├── ccf_2020_qa_match_point.py ├── data ├── new_dict.txt ├── test │ ├── test.query.tsv │ └── test.reply.tsv └── train │ ├── train.query.tsv │ └── train.reply.tsv ├── img ├── bottom-embedding.png ├── concat.png ├── pair.png ├── pet.png ├── point.png ├── post-training.png ├── sc-loss.png ├── sc.png ├── ssc-loss.png ├── ssc.png ├── summary.png └── top-embedding.png ├── new_words_mining.py ├── pair-adversarial-train.py ├── pair-data-augment-contrastive-learning.py ├── pair-external-embedding.py ├── pair-post-training-wwm-sop.py ├── pair-self-kd.py ├── pair-supervised-contrastive-learning.py ├── point-post-training-wwm-sop.py ├── requirements-post-training.txt └── requirements.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/README.md -------------------------------------------------------------------------------- /ccf_2020_qa_match_concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/ccf_2020_qa_match_concat.py -------------------------------------------------------------------------------- /ccf_2020_qa_match_pair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/ccf_2020_qa_match_pair.py -------------------------------------------------------------------------------- /ccf_2020_qa_match_pet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/ccf_2020_qa_match_pet.py -------------------------------------------------------------------------------- /ccf_2020_qa_match_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/ccf_2020_qa_match_point.py -------------------------------------------------------------------------------- /data/new_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/data/new_dict.txt -------------------------------------------------------------------------------- /data/test/test.query.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/data/test/test.query.tsv -------------------------------------------------------------------------------- /data/test/test.reply.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/data/test/test.reply.tsv -------------------------------------------------------------------------------- /data/train/train.query.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/data/train/train.query.tsv -------------------------------------------------------------------------------- /data/train/train.reply.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/data/train/train.reply.tsv -------------------------------------------------------------------------------- /img/bottom-embedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/img/bottom-embedding.png -------------------------------------------------------------------------------- /img/concat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/img/concat.png -------------------------------------------------------------------------------- /img/pair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/img/pair.png -------------------------------------------------------------------------------- /img/pet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/img/pet.png -------------------------------------------------------------------------------- /img/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/img/point.png -------------------------------------------------------------------------------- /img/post-training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/img/post-training.png -------------------------------------------------------------------------------- /img/sc-loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/img/sc-loss.png -------------------------------------------------------------------------------- /img/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/img/sc.png -------------------------------------------------------------------------------- /img/ssc-loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/img/ssc-loss.png -------------------------------------------------------------------------------- /img/ssc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/img/ssc.png -------------------------------------------------------------------------------- /img/summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/img/summary.png -------------------------------------------------------------------------------- /img/top-embedding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/img/top-embedding.png -------------------------------------------------------------------------------- /new_words_mining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/new_words_mining.py -------------------------------------------------------------------------------- /pair-adversarial-train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/pair-adversarial-train.py -------------------------------------------------------------------------------- /pair-data-augment-contrastive-learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/pair-data-augment-contrastive-learning.py -------------------------------------------------------------------------------- /pair-external-embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/pair-external-embedding.py -------------------------------------------------------------------------------- /pair-post-training-wwm-sop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/pair-post-training-wwm-sop.py -------------------------------------------------------------------------------- /pair-self-kd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/pair-self-kd.py -------------------------------------------------------------------------------- /pair-supervised-contrastive-learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/pair-supervised-contrastive-learning.py -------------------------------------------------------------------------------- /point-post-training-wwm-sop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/point-post-training-wwm-sop.py -------------------------------------------------------------------------------- /requirements-post-training.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/requirements-post-training.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xv44586/ccf_2020_qa_match/HEAD/requirements.txt --------------------------------------------------------------------------------