File size: 725 Bytes
cf24ca6
 
 
 
 
 
 
14f5a89
cf24ca6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14f5a89
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
pipeline_tag: sentence-similarity
tags:
- sentence-transformers
- feature-extraction
- sentence-similarity
- transformers
- ko
---

# ddobokki/unsup-simcse-klue-roberta-small

## Usage (Sentence-Transformers)

Using this model becomes easy when you have [sentence-transformers](https://www.SBERT.net) installed:

```
pip install -U sentence-transformers
```

Then you can use the model like this:

```python
from sentence_transformers import SentenceTransformer
sentences = ["This is an example sentence", "Each sentence is converted"]

model = SentenceTransformer('ddobokki/unsup-simcse-klue-roberta-small')
embeddings = model.encode(sentences)
print(embeddings)
```
(개발중)
git:https://github.com/ddobokki/KoSimCSE