├── .github └── images │ ├── performances │ ├── overall-hist.png │ └── overall-kde.png │ └── transitions │ ├── bert-base-uncased.png │ ├── bert-large-uncased.png │ ├── roberta-base.png │ └── roberta-large.png ├── .gitignore ├── LICENSE ├── README.md ├── download.sh ├── eval.py ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── results ├── bert-base-uncased.csv ├── bert-large-uncased.csv ├── roberta-base.csv └── roberta-large.csv ├── sts.py ├── train-custom.sh ├── train-multiple.sh ├── train-original.sh └── train.py /.github/images/performances/overall-hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/.github/images/performances/overall-hist.png -------------------------------------------------------------------------------- /.github/images/performances/overall-kde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/.github/images/performances/overall-kde.png -------------------------------------------------------------------------------- /.github/images/transitions/bert-base-uncased.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/.github/images/transitions/bert-base-uncased.png -------------------------------------------------------------------------------- /.github/images/transitions/bert-large-uncased.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/.github/images/transitions/bert-large-uncased.png -------------------------------------------------------------------------------- /.github/images/transitions/roberta-base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/.github/images/transitions/roberta-base.png -------------------------------------------------------------------------------- /.github/images/transitions/roberta-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/.github/images/transitions/roberta-large.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/README.md -------------------------------------------------------------------------------- /download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/download.sh -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/eval.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/bert-base-uncased.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/results/bert-base-uncased.csv -------------------------------------------------------------------------------- /results/bert-large-uncased.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/results/bert-large-uncased.csv -------------------------------------------------------------------------------- /results/roberta-base.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/results/roberta-base.csv -------------------------------------------------------------------------------- /results/roberta-large.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/results/roberta-large.csv -------------------------------------------------------------------------------- /sts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/sts.py -------------------------------------------------------------------------------- /train-custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/train-custom.sh -------------------------------------------------------------------------------- /train-multiple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/train-multiple.sh -------------------------------------------------------------------------------- /train-original.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/train-original.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hppRC/simple-simcse/HEAD/train.py --------------------------------------------------------------------------------