Update README.md
Browse filesFix bug in transformers example, because both vectors are 1-dimensional, the dim needs to be set to 0
README.md
CHANGED
@@ -192,7 +192,7 @@ embeddings = F.normalize(embeddings, p=2, dim=1)
|
|
192 |
print(embeddings.shape)
|
193 |
# torch.Size([2, 768])
|
194 |
|
195 |
-
similarity = F.cosine_similarity(embeddings[0], embeddings[1])
|
196 |
print(similarity)
|
197 |
# tensor(0.9118)
|
198 |
```
|
|
|
192 |
print(embeddings.shape)
|
193 |
# torch.Size([2, 768])
|
194 |
|
195 |
+
similarity = F.cosine_similarity(embeddings[0], embeddings[1], dim=0)
|
196 |
print(similarity)
|
197 |
# tensor(0.9118)
|
198 |
```
|