├── LICENSE ├── README.md ├── sohu_matching ├── README.md ├── logs │ └── 0503 │ │ ├── 0503_roberta_60K_singlemodel.log │ │ └── 0503_roberta_original.log ├── results │ └── 0503 │ │ ├── 0503_roberta_original_epoch_1_ab_f1.csv │ │ ├── 0503_roberta_original_epoch_1_ab_loss.csv │ │ ├── fixed_0503_roberta_original_epoch_1_ab_f1.csv │ │ └── fixed_0503_roberta_original_epoch_1_ab_loss.csv ├── src │ ├── NEZHA │ │ ├── __pycache__ │ │ │ ├── model_nezha.cpython-36.pyc │ │ │ └── nezha_utils.cpython-36.pyc │ │ ├── model_nezha.py │ │ └── nezha_utils.py │ ├── __pycache__ │ │ ├── config.cpython-36.pyc │ │ ├── data.cpython-36.pyc │ │ ├── model.cpython-36.pyc │ │ └── utils.cpython-36.pyc │ ├── config.py │ ├── data.py │ ├── infer.py │ ├── infer_sbert.py │ ├── model.py │ ├── new_runs │ │ └── 0503_roberta_original_ab │ │ │ └── events.out.tfevents.1620106925.ubuntu │ ├── train.py │ ├── train_sbert.py │ └── utils.py ├── test.yaml └── valid_output │ ├── 0503_macbert_base_epoch_1_ab_loss_pred_a.npy │ ├── 0503_macbert_base_epoch_1_ab_loss_pred_b.npy │ ├── 0503_roberta_60K_singlemodel_epoch_1_ab_loss_pred_a.npy │ ├── 0503_roberta_60K_singlemodel_epoch_1_ab_loss_pred_b.npy │ ├── 0503_sbert_roberta_epoch_1_ab_loss_pred_a.npy │ ├── 0503_sbert_roberta_epoch_1_ab_loss_pred_b.npy │ ├── 0505_nezha_ce_epoch_1_ab_loss_pred_a.npy │ ├── 0505_nezha_ce_epoch_1_ab_loss_pred_b.npy │ ├── 0505_nezha_test_epoch_1_ab_loss_pred_a.npy │ ├── 0505_nezha_test_epoch_1_ab_loss_pred_b.npy │ ├── 0508_ernie_epoch_1_ab_loss_pred_a.npy │ ├── 0508_ernie_epoch_1_ab_loss_pred_b.npy │ ├── f1.log │ ├── get_valid_f1.py │ ├── gt_a.npy │ └── gt_b.npy └── 决赛答辩-分比我们低的都是帅哥.pptx /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/README.md -------------------------------------------------------------------------------- /sohu_matching/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/README.md -------------------------------------------------------------------------------- /sohu_matching/logs/0503/0503_roberta_60K_singlemodel.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/logs/0503/0503_roberta_60K_singlemodel.log -------------------------------------------------------------------------------- /sohu_matching/logs/0503/0503_roberta_original.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/logs/0503/0503_roberta_original.log -------------------------------------------------------------------------------- /sohu_matching/results/0503/0503_roberta_original_epoch_1_ab_f1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/results/0503/0503_roberta_original_epoch_1_ab_f1.csv -------------------------------------------------------------------------------- /sohu_matching/results/0503/0503_roberta_original_epoch_1_ab_loss.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/results/0503/0503_roberta_original_epoch_1_ab_loss.csv -------------------------------------------------------------------------------- /sohu_matching/results/0503/fixed_0503_roberta_original_epoch_1_ab_f1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/results/0503/fixed_0503_roberta_original_epoch_1_ab_f1.csv -------------------------------------------------------------------------------- /sohu_matching/results/0503/fixed_0503_roberta_original_epoch_1_ab_loss.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/results/0503/fixed_0503_roberta_original_epoch_1_ab_loss.csv -------------------------------------------------------------------------------- /sohu_matching/src/NEZHA/__pycache__/model_nezha.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/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/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/NEZHA/__pycache__/nezha_utils.cpython-36.pyc -------------------------------------------------------------------------------- /sohu_matching/src/NEZHA/model_nezha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/NEZHA/model_nezha.py -------------------------------------------------------------------------------- /sohu_matching/src/NEZHA/nezha_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/NEZHA/nezha_utils.py -------------------------------------------------------------------------------- /sohu_matching/src/__pycache__/config.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/__pycache__/config.cpython-36.pyc -------------------------------------------------------------------------------- /sohu_matching/src/__pycache__/data.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/__pycache__/data.cpython-36.pyc -------------------------------------------------------------------------------- /sohu_matching/src/__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /sohu_matching/src/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /sohu_matching/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/config.py -------------------------------------------------------------------------------- /sohu_matching/src/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/data.py -------------------------------------------------------------------------------- /sohu_matching/src/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/infer.py -------------------------------------------------------------------------------- /sohu_matching/src/infer_sbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/infer_sbert.py -------------------------------------------------------------------------------- /sohu_matching/src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/model.py -------------------------------------------------------------------------------- /sohu_matching/src/new_runs/0503_roberta_original_ab/events.out.tfevents.1620106925.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/new_runs/0503_roberta_original_ab/events.out.tfevents.1620106925.ubuntu -------------------------------------------------------------------------------- /sohu_matching/src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/train.py -------------------------------------------------------------------------------- /sohu_matching/src/train_sbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/train_sbert.py -------------------------------------------------------------------------------- /sohu_matching/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/src/utils.py -------------------------------------------------------------------------------- /sohu_matching/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/test.yaml -------------------------------------------------------------------------------- /sohu_matching/valid_output/0503_macbert_base_epoch_1_ab_loss_pred_a.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/0503_macbert_base_epoch_1_ab_loss_pred_a.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/0503_macbert_base_epoch_1_ab_loss_pred_b.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/0503_macbert_base_epoch_1_ab_loss_pred_b.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/0503_roberta_60K_singlemodel_epoch_1_ab_loss_pred_a.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/0503_roberta_60K_singlemodel_epoch_1_ab_loss_pred_a.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/0503_roberta_60K_singlemodel_epoch_1_ab_loss_pred_b.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/0503_roberta_60K_singlemodel_epoch_1_ab_loss_pred_b.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/0503_sbert_roberta_epoch_1_ab_loss_pred_a.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/0503_sbert_roberta_epoch_1_ab_loss_pred_a.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/0503_sbert_roberta_epoch_1_ab_loss_pred_b.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/0503_sbert_roberta_epoch_1_ab_loss_pred_b.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/0505_nezha_ce_epoch_1_ab_loss_pred_a.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/0505_nezha_ce_epoch_1_ab_loss_pred_a.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/0505_nezha_ce_epoch_1_ab_loss_pred_b.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/0505_nezha_ce_epoch_1_ab_loss_pred_b.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/0505_nezha_test_epoch_1_ab_loss_pred_a.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/0505_nezha_test_epoch_1_ab_loss_pred_a.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/0505_nezha_test_epoch_1_ab_loss_pred_b.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/0505_nezha_test_epoch_1_ab_loss_pred_b.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/0508_ernie_epoch_1_ab_loss_pred_a.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/0508_ernie_epoch_1_ab_loss_pred_a.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/0508_ernie_epoch_1_ab_loss_pred_b.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/0508_ernie_epoch_1_ab_loss_pred_b.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/f1.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/f1.log -------------------------------------------------------------------------------- /sohu_matching/valid_output/get_valid_f1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/get_valid_f1.py -------------------------------------------------------------------------------- /sohu_matching/valid_output/gt_a.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/gt_a.npy -------------------------------------------------------------------------------- /sohu_matching/valid_output/gt_b.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/sohu_matching/valid_output/gt_b.npy -------------------------------------------------------------------------------- /决赛答辩-分比我们低的都是帅哥.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MingjieWang0606/2021-Sohu-Text-Matching-TOP2/HEAD/决赛答辩-分比我们低的都是帅哥.pptx --------------------------------------------------------------------------------