Downloads · 30 days
10
4% of all-time downloads
mrp/SCT_BERT_Large
SCT_BERT_Large is a sentence similarity model from mrp. Use it when you need a score for how close two texts are. It is set up for sentence-transformers. The card lists the license as apache-2.0.
This is a SCT model: It maps sentences to a dense vector space and can be used for tasks like semantic search.
Downloads · 30 days
10
4% of all-time downloads
All-time downloads
263
Public
Repo size
2.7 GB
Likes
0
Public
Click a slice to open those files.
.bin1.3 GB · 100%
From the Hugging Face model README
This is a SCT model: It maps sentences to a dense vector space and can be used for tasks like semantic search.
Using this model becomes easy when you have SCT installed:
pip install -U git+https://github.com/mrpeerat/SCT
Then you can use the model like this:
from sentence_transformers import SentenceTransformer
sentences = ["This is an example sentence", "Each sentence is converted"]
model = SentenceTransformer('mrp/SCT_BERT_Large')
embeddings = model.encode(sentences)
print(embeddings)
For an automated evaluation of this model, see the Sentence Embeddings Benchmark: Semantic Textual Similarity
@article{limkonchotiwat-etal-2023-sct,
title = "An Efficient Self-Supervised Cross-View Training For Sentence Embedding",
author = "Limkonchotiwat, Peerat and
Ponwitayarat, Wuttikorn and
Lowphansirikul, Lalita and
Udomcharoenchaikit, Can and
Chuangsuwanich, Ekapol and
Nutanong, Sarana",
journal = "Transactions of the Association for Computational Linguistics",
year = "2023",
address = "Cambridge, MA",
publisher = "MIT Press",
}