├── ESIM ├── .gitignore ├── data │ └── train_data.sample ├── esim │ ├── __init__.py │ ├── data.py │ ├── layers.py │ ├── model.py │ └── utils.py └── utils.py ├── LICENSE ├── README.md ├── img ├── exp.md ├── finalrank_26.jpg ├── fm.jpg └── ps2bm1iwq.png └── 复赛ESIM线下测试版.ipynb /ESIM/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/ESIM/.gitignore -------------------------------------------------------------------------------- /ESIM/data/train_data.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/ESIM/data/train_data.sample -------------------------------------------------------------------------------- /ESIM/esim/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ESIM/esim/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/ESIM/esim/data.py -------------------------------------------------------------------------------- /ESIM/esim/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/ESIM/esim/layers.py -------------------------------------------------------------------------------- /ESIM/esim/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/ESIM/esim/model.py -------------------------------------------------------------------------------- /ESIM/esim/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/ESIM/esim/utils.py -------------------------------------------------------------------------------- /ESIM/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/ESIM/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /img/exp.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /img/finalrank_26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/img/finalrank_26.jpg -------------------------------------------------------------------------------- /img/fm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/img/fm.jpg -------------------------------------------------------------------------------- /img/ps2bm1iwq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/img/ps2bm1iwq.png -------------------------------------------------------------------------------- /复赛ESIM线下测试版.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexdyysp/ESIM-pytorch/HEAD/复赛ESIM线下测试版.ipynb --------------------------------------------------------------------------------