Update README.md
Browse files
README.md
CHANGED
@@ -4,7 +4,8 @@ tags:
|
|
4 |
- sentence-transformers
|
5 |
- feature-extraction
|
6 |
- sentence-similarity
|
7 |
-
|
|
|
8 |
---
|
9 |
|
10 |
# indoSBERT-large
|
@@ -12,7 +13,8 @@ tags:
|
|
12 |
This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 256 dimensional dense vector space and can be used for tasks like clustering or semantic search.
|
13 |
|
14 |
IndoSBERT is a modification of `https://huggingface.co/indobenchmark/indobert-large-p1` that has been fine-tuned using the siamese network scheme inspired by SBERT.
|
15 |
-
This model was fine-tuned with the STS Dataset (2012-2016) which was machine-translated into Indonesian languange.
|
|
|
16 |
This model can provide meaningful semantic sentence embeddings for Indonesian sentences.
|
17 |
|
18 |
<!--- Describe your model here -->
|
@@ -29,7 +31,7 @@ Then you can use the model like this:
|
|
29 |
|
30 |
```python
|
31 |
from sentence_transformers import SentenceTransformer
|
32 |
-
sentences = ["
|
33 |
|
34 |
model = SentenceTransformer('denaya/indoSBERT-large')
|
35 |
embeddings = model.encode(sentences)
|
@@ -38,13 +40,6 @@ print(embeddings)
|
|
38 |
|
39 |
|
40 |
|
41 |
-
## Evaluation Results
|
42 |
-
|
43 |
-
<!--- Describe how your model was evaluated -->
|
44 |
-
|
45 |
-
For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: [https://seb.sbert.net](https://seb.sbert.net?model_name=indobert-large-p1_dense_trained-epoch14)
|
46 |
-
|
47 |
-
|
48 |
## Training
|
49 |
The model was trained with the parameters:
|
50 |
|
|
|
4 |
- sentence-transformers
|
5 |
- feature-extraction
|
6 |
- sentence-similarity
|
7 |
+
language:
|
8 |
+
- id
|
9 |
---
|
10 |
|
11 |
# indoSBERT-large
|
|
|
13 |
This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 256 dimensional dense vector space and can be used for tasks like clustering or semantic search.
|
14 |
|
15 |
IndoSBERT is a modification of `https://huggingface.co/indobenchmark/indobert-large-p1` that has been fine-tuned using the siamese network scheme inspired by SBERT.
|
16 |
+
This model was fine-tuned with the STS Dataset (2012-2016) which was machine-translated into Indonesian languange.
|
17 |
+
|
18 |
This model can provide meaningful semantic sentence embeddings for Indonesian sentences.
|
19 |
|
20 |
<!--- Describe your model here -->
|
|
|
31 |
|
32 |
```python
|
33 |
from sentence_transformers import SentenceTransformer
|
34 |
+
sentences = ["Komposer favorit saya adalah Joe Hisaishi", "Sapo tahu enak banget"]
|
35 |
|
36 |
model = SentenceTransformer('denaya/indoSBERT-large')
|
37 |
embeddings = model.encode(sentences)
|
|
|
40 |
|
41 |
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
## Training
|
44 |
The model was trained with the parameters:
|
45 |
|