├── README.md ├── img ├── 1.svg ├── 2.svg └── 3.svg ├── train ├── get_best_split.py ├── get_test_output.py ├── tf-idf计算.py ├── train.py └── train_with_tf_idf.py └── 决赛提交 ├── Dockerfile ├── README.md ├── base_model └── NEZHA-Base │ ├── bert_config.json │ └── vocab.txt ├── data ├── input │ └── test.txt └── output │ └── pred.csv ├── new_get_test_output.py ├── requirements.txt └── weights └── 下载weights后放到此目录下 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/README.md -------------------------------------------------------------------------------- /img/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/img/1.svg -------------------------------------------------------------------------------- /img/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/img/2.svg -------------------------------------------------------------------------------- /img/3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/img/3.svg -------------------------------------------------------------------------------- /train/get_best_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/train/get_best_split.py -------------------------------------------------------------------------------- /train/get_test_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/train/get_test_output.py -------------------------------------------------------------------------------- /train/tf-idf计算.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/train/tf-idf计算.py -------------------------------------------------------------------------------- /train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/train/train.py -------------------------------------------------------------------------------- /train/train_with_tf_idf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/train/train_with_tf_idf.py -------------------------------------------------------------------------------- /决赛提交/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/决赛提交/Dockerfile -------------------------------------------------------------------------------- /决赛提交/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/决赛提交/README.md -------------------------------------------------------------------------------- /决赛提交/base_model/NEZHA-Base/bert_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/决赛提交/base_model/NEZHA-Base/bert_config.json -------------------------------------------------------------------------------- /决赛提交/base_model/NEZHA-Base/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/决赛提交/base_model/NEZHA-Base/vocab.txt -------------------------------------------------------------------------------- /决赛提交/data/input/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/决赛提交/data/input/test.txt -------------------------------------------------------------------------------- /决赛提交/data/output/pred.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/决赛提交/data/output/pred.csv -------------------------------------------------------------------------------- /决赛提交/new_get_test_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/决赛提交/new_get_test_output.py -------------------------------------------------------------------------------- /决赛提交/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQUPT-GML/2021Sohu_Text_Matching/HEAD/决赛提交/requirements.txt -------------------------------------------------------------------------------- /决赛提交/weights/下载weights后放到此目录下: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------