Sentence Similarity
sentence-transformers
PyTorch
Transformers
Korean
roberta
feature-extraction
text-embeddings-inference
Instructions to use smartmind/roberta-ko-small-tsdae with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use smartmind/roberta-ko-small-tsdae with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("smartmind/roberta-ko-small-tsdae") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Transformers
How to use smartmind/roberta-ko-small-tsdae with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("smartmind/roberta-ko-small-tsdae") model = AutoModel.from_pretrained("smartmind/roberta-ko-small-tsdae") - Notebooks
- Google Colab
- Kaggle
File size: 133 Bytes
3ed7855 | 1 2 3 4 | version https://git-lfs.github.com/spec/v1
oid sha256:d93023814dcea5461abd20714dfcf1b79cf3c5b4e4f33ad1a00f836592909eb4
size 90236977
|