Badnyal commited on
Commit
4e5aaea
·
verified ·
1 Parent(s): f39b8e9

Replace README with Khasi context

Browse files
Files changed (1) hide show
  1. README.md +9 -0
README.md CHANGED
@@ -16,4 +16,13 @@ This model enables semantic search between English and Khasi languages, supporti
16
  - Model size: ~90MB (lightweight deployment)
17
  - 384-dimensional embeddings
18
 
 
 
 
 
 
 
 
 
 
19
  Developed by **MWirelabs** for Northeast India AI innovation.
 
16
  - Model size: ~90MB (lightweight deployment)
17
  - 384-dimensional embeddings
18
 
19
+ ## Quick Start
20
+ ```python
21
+ from sentence_transformers import SentenceTransformer
22
+
23
+ model = SentenceTransformer('MWirelabs/khasi-english-semantic-search')
24
+ sentences = ['Hello', 'hangne', 'Good morning']
25
+ embeddings = model.encode(sentences)
26
+ ```
27
+
28
  Developed by **MWirelabs** for Northeast India AI innovation.