Skip to content

Commit f07e6c3

Browse files
authored
Merge pull request #67 from CharlesCNorton/patch-6
fix: correct typo in paraphrase detection section
2 parents dd45b82 + c3e32f3 commit f07e6c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/capabilities/embeddings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ In our example above, we used the Euclidean distance to measure the distance bet
9191
## Paraphrase detection
9292
Another potential use case is paraphrase detection. In this simple example, we have a list of three sentences, and we would like to find out if any of the two sentences are paraphrases of each other. If the distance between two sentence embeddings is small, it suggests that the two sentences are semantically similar and could be potential paraphrases.
9393

94-
Result suggests that the first two sentences are semantically similar and could be potential paraphrases, whereas the third sentence is more different. This is just a super simple example. But this approach can be extended to more complex situations in real-world applications, such as detecting paraphrases in social media posts, news articles, or customer reviews.
94+
The result suggests that the first two sentences are semantically similar and could be potential paraphrases, whereas the third sentence is more different. This is just a super simple example. But this approach can be extended to more complex situations in real-world applications, such as detecting paraphrases in social media posts, news articles, or customer reviews.
9595

9696
```python
9797
import itertools

0 commit comments

Comments
 (0)