artefucktor commited on
Commit
225ac92
·
1 Parent(s): ae9efff

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -9
README.md CHANGED
@@ -32,22 +32,15 @@ Then you can use the model like this:
32
 
33
  ```python
34
  from sentence_transformers import SentenceTransformer
35
- sentences = ["This is an example sentence", "Each sentence is converted"]
36
 
37
  model = SentenceTransformer('artefucktor/LaBSE_geonames_RU')
38
- embeddings = model.encode(sentences)
39
  print(embeddings)
40
  ```
41
 
42
 
43
 
44
- ## Evaluation Results
45
-
46
- <!--- Describe how your model was evaluated -->
47
-
48
- For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: [https://seb.sbert.net](https://seb.sbert.net?model_name={MODEL_NAME})
49
-
50
-
51
  ## Training
52
  The model was trained with the parameters:
53
 
 
32
 
33
  ```python
34
  from sentence_transformers import SentenceTransformer
35
+ cities = ["Vladivostok", "Moscow"]
36
 
37
  model = SentenceTransformer('artefucktor/LaBSE_geonames_RU')
38
+ embeddings = model.encode(cities)
39
  print(embeddings)
40
  ```
41
 
42
 
43
 
 
 
 
 
 
 
 
44
  ## Training
45
  The model was trained with the parameters:
46