├── LICENSE ├── README.md └── 决赛提交 ├── Dockerfile ├── README.md └── sohu_matching ├── data ├── dummy_bert │ ├── config.json │ └── vocab.txt ├── dummy_ernie │ ├── config.json │ └── vocab.txt └── dummy_nezha │ ├── config.json │ └── vocab.txt ├── results └── rematch │ └── merge_final.csv └── src ├── NEZHA ├── __pycache__ │ ├── model_nezha.cpython-36.pyc │ └── nezha_utils.cpython-36.pyc ├── model_nezha.py └── nezha_utils.py ├── config.py ├── data.py ├── infer.py ├── infer_final.py ├── merge_result.py ├── model.py ├── search_better_merge.py ├── train.py ├── train_old.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/README.md -------------------------------------------------------------------------------- /决赛提交/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/Dockerfile -------------------------------------------------------------------------------- /决赛提交/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/README.md -------------------------------------------------------------------------------- /决赛提交/sohu_matching/data/dummy_bert/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/data/dummy_bert/config.json -------------------------------------------------------------------------------- /决赛提交/sohu_matching/data/dummy_bert/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/data/dummy_bert/vocab.txt -------------------------------------------------------------------------------- /决赛提交/sohu_matching/data/dummy_ernie/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/data/dummy_ernie/config.json -------------------------------------------------------------------------------- /决赛提交/sohu_matching/data/dummy_ernie/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/data/dummy_ernie/vocab.txt -------------------------------------------------------------------------------- /决赛提交/sohu_matching/data/dummy_nezha/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/data/dummy_nezha/config.json -------------------------------------------------------------------------------- /决赛提交/sohu_matching/data/dummy_nezha/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/data/dummy_nezha/vocab.txt -------------------------------------------------------------------------------- /决赛提交/sohu_matching/results/rematch/merge_final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/results/rematch/merge_final.csv -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/NEZHA/__pycache__/model_nezha.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/NEZHA/__pycache__/model_nezha.cpython-36.pyc -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/NEZHA/__pycache__/nezha_utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/NEZHA/__pycache__/nezha_utils.cpython-36.pyc -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/NEZHA/model_nezha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/NEZHA/model_nezha.py -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/NEZHA/nezha_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/NEZHA/nezha_utils.py -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/config.py -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/data.py -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/infer.py -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/infer_final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/infer_final.py -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/merge_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/merge_result.py -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/model.py -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/search_better_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/search_better_merge.py -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/train.py -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/train_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/train_old.py -------------------------------------------------------------------------------- /决赛提交/sohu_matching/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Decem-Y/sohu_text_matching_Rank2/HEAD/决赛提交/sohu_matching/src/utils.py --------------------------------------------------------------------------------