This is a
sentence-transformers
model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.
from sentence_transformers import SentenceTransformer
sentences = ["This is an example sentence", "Each sentence is converted"]
model = SentenceTransformer('bongsoo/albert-small-kor-sbert-v1')
embeddings = model.encode(sentences)
print(embeddings)
Usage (HuggingFace Transformers)
Without
sentence-transformers
, you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings.
from transformers import AutoTokenizer, AutoModel
import torch
defcls_pooling(model_output, attention_mask):
return model_output[0][:,0]
# Sentences we want sentence embeddings for
sentences = ['This is an example sentence', 'Each sentence is converted']
# Load model from HuggingFace Hub
tokenizer = AutoTokenizer.from_pretrained('bongsoo/albert-small-kor-sbert-v1')
model = AutoModel.from_pretrained('bongsoo/albert-small-kor-sbert-v1')
# Tokenize sentences
encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt')
# Compute token embeddingswith torch.no_grad():
model_output = model(**encoded_input)
# Perform pooling. In this case, cls pooling.
sentence_embeddings = cls_pooling(model_output, encoded_input['attention_mask'])
print("Sentence embeddings:")
print(sentence_embeddings)
Evaluation Results
성능 측정을 위한 말뭉치는, 아래 한국어 (kor), 영어(en) 평가 말뭉치를 이용함
한국어 :
korsts(1,379쌍문장)
와
klue-sts(519쌍문장)
영어 :
stsb_multi_mt
(1,376쌍문장) 와
glue:stsb
(1,500쌍문장)
Runs of bongsoo albert-small-kor-sbert-v1 on huggingface.co
38
Total runs
-3
24-hour runs
-2
3-day runs
-8
7-day runs
-41
30-day runs
More Information About albert-small-kor-sbert-v1 huggingface.co Model
albert-small-kor-sbert-v1 huggingface.co
albert-small-kor-sbert-v1 huggingface.co is an AI model on huggingface.co that provides albert-small-kor-sbert-v1's model effect (), which can be used instantly with this bongsoo albert-small-kor-sbert-v1 model. huggingface.co supports a free trial of the albert-small-kor-sbert-v1 model, and also provides paid use of the albert-small-kor-sbert-v1. Support call albert-small-kor-sbert-v1 model through api, including Node.js, Python, http.
albert-small-kor-sbert-v1 huggingface.co is an online trial and call api platform, which integrates albert-small-kor-sbert-v1's modeling effects, including api services, and provides a free online trial of albert-small-kor-sbert-v1, you can try albert-small-kor-sbert-v1 online for free by clicking the link below.
bongsoo albert-small-kor-sbert-v1 online free url in huggingface.co:
albert-small-kor-sbert-v1 is an open source model from GitHub that offers a free installation service, and any user can find albert-small-kor-sbert-v1 on GitHub to install. At the same time, huggingface.co provides the effect of albert-small-kor-sbert-v1 install, users can directly use albert-small-kor-sbert-v1 installed effect in huggingface.co for debugging and trial. It also supports api for free installation.
albert-small-kor-sbert-v1 install url in huggingface.co: