abdulmunimjemal commited on
Commit
e89de90
·
verified ·
1 Parent(s): 51a1c2e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -87,7 +87,7 @@ To use the model in your own project:
87
  "አየር በምድር ዙሪያ ያለ ነው።"
88
  ]
89
  embeddings = model.encode(sentences)
90
- print(embeddings.shape) # Expected output: (3, 768)
91
  ```
92
 
93
  3. **Compute Similarity:**
@@ -95,7 +95,7 @@ To use the model in your own project:
95
  ```python
96
  from sklearn.metrics.pairwise import cosine_similarity
97
  similarities = cosine_similarity(embeddings, embeddings)
98
- print(similarities.shape) # Expected output: (3, 3)
99
  ```
100
 
101
  ## Model Architecture
 
87
  "አየር በምድር ዙሪያ ያለ ነው።"
88
  ]
89
  embeddings = model.encode(sentences)
90
+ print(embeddings.shape) # Expected output: (5, 768)
91
  ```
92
 
93
  3. **Compute Similarity:**
 
95
  ```python
96
  from sklearn.metrics.pairwise import cosine_similarity
97
  similarities = cosine_similarity(embeddings, embeddings)
98
+ print(similarities.shape) # Expected output: (5, 5)
99
  ```
100
 
101
  ## Model Architecture