Edit model card

使用方法

from sentence_transformers import SentenceTransformer

sentences = ["sentence1", "sentence2"]
model = SentenceTransformer('IYun-large-zh')
embeddings_1 = model.encode(sentences, normalize_embeddings=True)
embeddings_2 = model.encode(sentences, normalize_embeddings=True)
similarity = embeddings_1 @ embeddings_2.T
print(similarity)
Downloads last month
0
Unable to determine this model's library. Check the docs .

Evaluation results