├── .gitignore ├── README.md ├── arguments.py ├── dataset └── prop_pairs.py ├── figure └── teaser.png ├── main.py ├── model ├── layers.py ├── losses.py └── pl_subencoder.py ├── requirements.txt ├── scripts └── evaluation │ └── eval_retrieval.py └── utils ├── data_utils.py ├── label_utils.py └── model_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/README.md -------------------------------------------------------------------------------- /arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/arguments.py -------------------------------------------------------------------------------- /dataset/prop_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/dataset/prop_pairs.py -------------------------------------------------------------------------------- /figure/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/figure/teaser.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/main.py -------------------------------------------------------------------------------- /model/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/model/layers.py -------------------------------------------------------------------------------- /model/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/model/losses.py -------------------------------------------------------------------------------- /model/pl_subencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/model/pl_subencoder.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/evaluation/eval_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/scripts/evaluation/eval_retrieval.py -------------------------------------------------------------------------------- /utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/utils/data_utils.py -------------------------------------------------------------------------------- /utils/label_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/utils/label_utils.py -------------------------------------------------------------------------------- /utils/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/schen149/sub-sentence-encoder/HEAD/utils/model_utils.py --------------------------------------------------------------------------------