ko-sbert-sts / README.md
jhgan's picture
updated README.md
7bd3416
|
raw
history blame
No virus
2.45 kB
metadata
pipeline_tag: sentence-similarity
tags:
  - sentence-transformers
  - feature-extraction
  - sentence-similarity

ko-sbert-sts

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.

Usage (Sentence-Transformers)

λͺ¨λΈμ„ μ‚¬μš©ν•˜κΈ° μœ„ν•΄μ„œλŠ” ko-sentence-transformers λ₯Ό μ„€μΉ˜ν•΄μ•Ό ν•©λ‹ˆλ‹€.

pip install -U ko-sentence-transformers

Then you can use the model like this:

from sentence_transformers import SentenceTransformer
sentences = ["μ•ˆλ…•ν•˜μ„Έμš”?", "ν•œκ΅­μ–΄ λ¬Έμž₯ μž„λ² λ”©μ„ μœ„ν•œ λ²„νŠΈ λͺ¨λΈμž…λ‹ˆλ‹€."]

model = SentenceTransformer('ko-sbert-sts')
embeddings = model.encode(sentences)
print(embeddings)

Evaluation Results

KorSTS ν•™μŠ΅ λ°μ΄ν„°μ…‹μœΌλ‘œ ν•™μŠ΅ν•œ ν›„ KorSTS 평가 λ°μ΄ν„°μ…‹μœΌλ‘œ ν‰κ°€ν•œ κ²°κ³Όμž…λ‹ˆλ‹€.

  • Cosine Pearson: 80.79
  • Cosine Spearman: 79.01
  • Euclidean Pearson: 78.03
  • Euclidean Spearman: 77.31
  • Manhattan Pearson: 78.08
  • Manhattan Spearman: 77.35
  • Dot Pearson: 75.96
  • Dot Spearman: 75.20

Training

The model was trained with the parameters:

DataLoader:

torch.utils.data.dataloader.DataLoader of length 719 with parameters:

{'batch_size': 8, 'sampler': 'torch.utils.data.sampler.RandomSampler', 'batch_sampler': 'torch.utils.data.sampler.BatchSampler'}

Loss:

sentence_transformers.losses.CosineSimilarityLoss.CosineSimilarityLoss

Parameters of the fit()-Method:

{
    "epochs": 4,
    "evaluation_steps": 1000,
    "evaluator": "sentence_transformers.evaluation.EmbeddingSimilarityEvaluator.EmbeddingSimilarityEvaluator",
    "max_grad_norm": 1,
    "optimizer_class": "<class 'transformers.optimization.AdamW'>",
    "optimizer_params": {
        "lr": 2e-05
    },
    "scheduler": "WarmupLinear",
    "steps_per_epoch": null,
    "warmup_steps": 288,
    "weight_decay": 0.01
}

Full Model Architecture

SentenceTransformer(
  (0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: BertModel 
  (1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False})
)

Citing & Authors