├── .gitignore ├── README.md ├── SentEval ├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── data │ └── download_dataset.sh ├── examples │ ├── bow.py │ ├── gensen.py │ ├── googleuse.py │ ├── infersent.py │ ├── models.py │ └── skipthought.py ├── senteval │ ├── __init__.py │ ├── binary.py │ ├── engine.py │ ├── mrpc.py │ ├── probing.py │ ├── rank.py │ ├── sick.py │ ├── snli.py │ ├── sst.py │ ├── sts.py │ ├── tools │ │ ├── __init__.py │ │ ├── classifier.py │ │ ├── ranking.py │ │ ├── relatedness.py │ │ └── validation.py │ ├── trec.py │ └── utils.py └── setup.py ├── evaluation.py ├── evaluation_mteb.py ├── generation ├── README.md ├── generation.py └── sentences_merge.py ├── posttraining ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── models.cpython-38.pyc │ ├── teachers.cpython-38.pyc │ ├── tool.cpython-38.pyc │ └── trainers.cpython-38.pyc ├── models.py ├── teachers.py ├── tool.py └── trainers.py ├── requirements.txt ├── run.sh ├── run_evaluation.sh └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/README.md -------------------------------------------------------------------------------- /SentEval/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/.DS_Store -------------------------------------------------------------------------------- /SentEval/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/.gitignore -------------------------------------------------------------------------------- /SentEval/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/LICENSE -------------------------------------------------------------------------------- /SentEval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/README.md -------------------------------------------------------------------------------- /SentEval/data/download_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/data/download_dataset.sh -------------------------------------------------------------------------------- /SentEval/examples/bow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/examples/bow.py -------------------------------------------------------------------------------- /SentEval/examples/gensen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/examples/gensen.py -------------------------------------------------------------------------------- /SentEval/examples/googleuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/examples/googleuse.py -------------------------------------------------------------------------------- /SentEval/examples/infersent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/examples/infersent.py -------------------------------------------------------------------------------- /SentEval/examples/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/examples/models.py -------------------------------------------------------------------------------- /SentEval/examples/skipthought.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/examples/skipthought.py -------------------------------------------------------------------------------- /SentEval/senteval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/__init__.py -------------------------------------------------------------------------------- /SentEval/senteval/binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/binary.py -------------------------------------------------------------------------------- /SentEval/senteval/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/engine.py -------------------------------------------------------------------------------- /SentEval/senteval/mrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/mrpc.py -------------------------------------------------------------------------------- /SentEval/senteval/probing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/probing.py -------------------------------------------------------------------------------- /SentEval/senteval/rank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/rank.py -------------------------------------------------------------------------------- /SentEval/senteval/sick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/sick.py -------------------------------------------------------------------------------- /SentEval/senteval/snli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/snli.py -------------------------------------------------------------------------------- /SentEval/senteval/sst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/sst.py -------------------------------------------------------------------------------- /SentEval/senteval/sts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/sts.py -------------------------------------------------------------------------------- /SentEval/senteval/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SentEval/senteval/tools/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/tools/classifier.py -------------------------------------------------------------------------------- /SentEval/senteval/tools/ranking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/tools/ranking.py -------------------------------------------------------------------------------- /SentEval/senteval/tools/relatedness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/tools/relatedness.py -------------------------------------------------------------------------------- /SentEval/senteval/tools/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/tools/validation.py -------------------------------------------------------------------------------- /SentEval/senteval/trec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/trec.py -------------------------------------------------------------------------------- /SentEval/senteval/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/senteval/utils.py -------------------------------------------------------------------------------- /SentEval/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/SentEval/setup.py -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/evaluation.py -------------------------------------------------------------------------------- /evaluation_mteb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/evaluation_mteb.py -------------------------------------------------------------------------------- /generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/generation/README.md -------------------------------------------------------------------------------- /generation/generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/generation/generation.py -------------------------------------------------------------------------------- /generation/sentences_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/generation/sentences_merge.py -------------------------------------------------------------------------------- /posttraining/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/posttraining/__init__.py -------------------------------------------------------------------------------- /posttraining/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/posttraining/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /posttraining/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/posttraining/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /posttraining/__pycache__/teachers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/posttraining/__pycache__/teachers.cpython-38.pyc -------------------------------------------------------------------------------- /posttraining/__pycache__/tool.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/posttraining/__pycache__/tool.cpython-38.pyc -------------------------------------------------------------------------------- /posttraining/__pycache__/trainers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/posttraining/__pycache__/trainers.cpython-38.pyc -------------------------------------------------------------------------------- /posttraining/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/posttraining/models.py -------------------------------------------------------------------------------- /posttraining/teachers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/posttraining/teachers.py -------------------------------------------------------------------------------- /posttraining/tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/posttraining/tool.py -------------------------------------------------------------------------------- /posttraining/trainers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/posttraining/trainers.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/run.sh -------------------------------------------------------------------------------- /run_evaluation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/run_evaluation.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hly1998/RankingSentenceGeneration/HEAD/train.py --------------------------------------------------------------------------------