sequoiaandrade commited on
Commit
ffe1ed9
1 Parent(s): 2a43df9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -35,7 +35,7 @@ Then you can use the model like this:
35
  from sentence_transformers import SentenceTransformer
36
  sentences = ["This is an example sentence", "Each sentence is converted"]
37
 
38
- model = SentenceTransformer('{MODEL_NAME}')
39
  embeddings = model.encode(sentences)
40
  print(embeddings)
41
  ```
 
35
  from sentence_transformers import SentenceTransformer
36
  sentences = ["This is an example sentence", "Each sentence is converted"]
37
 
38
+ model = SentenceTransformer("NASA-AIML/MIKA_Custom_IR")
39
  embeddings = model.encode(sentences)
40
  print(embeddings)
41
  ```