Update README.md
Browse files
README.md
CHANGED
@@ -6,7 +6,7 @@ tags:
|
|
6 |
- sentence-similarity
|
7 |
---
|
8 |
|
9 |
-
# {
|
10 |
|
11 |
This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 128 dimensional dense vector space and can be used for tasks like clustering or semantic search.
|
12 |
|
@@ -26,7 +26,7 @@ Then you can use the model like this:
|
|
26 |
from sentence_transformers import SentenceTransformer
|
27 |
sentences = ["This is an example sentence", "Each sentence is converted"]
|
28 |
|
29 |
-
model = SentenceTransformer('
|
30 |
embeddings = model.encode(sentences)
|
31 |
print(embeddings)
|
32 |
```
|
@@ -84,5 +84,4 @@ SentenceTransformer(
|
|
84 |
```
|
85 |
|
86 |
## Citing & Authors
|
87 |
-
|
88 |
-
<!--- Describe where people can find more information -->
|
|
|
6 |
- sentence-similarity
|
7 |
---
|
8 |
|
9 |
+
# {klue-sbert-128d-v1}
|
10 |
|
11 |
This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 128 dimensional dense vector space and can be used for tasks like clustering or semantic search.
|
12 |
|
|
|
26 |
from sentence_transformers import SentenceTransformer
|
27 |
sentences = ["This is an example sentence", "Each sentence is converted"]
|
28 |
|
29 |
+
model = SentenceTransformer('klue-sbert-128d-v1')
|
30 |
embeddings = model.encode(sentences)
|
31 |
print(embeddings)
|
32 |
```
|
|
|
84 |
```
|
85 |
|
86 |
## Citing & Authors
|
87 |
+
bongsoo
|
|