Skip to content

Commit c3e32f3

Browse files
fix: correct typo in paraphrase detection section
Corrected the typo in the paraphrase detection section for clarity. The sentence now correctly reads: "The result suggests that the first two sentences are semantically similar and could be potential paraphrases, whereas the third sentence is more different." This ensures the description accurately reflects the semantic similarity between sentences.
1 parent 9c1e33e commit c3e32f3

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)