diff --git a/qdrant-landing/content/documentation/concepts/search.md b/qdrant-landing/content/documentation/concepts/search.md index 674336713..2ea8e5747 100644 --- a/qdrant-landing/content/documentation/concepts/search.md +++ b/qdrant-landing/content/documentation/concepts/search.md @@ -1005,7 +1005,7 @@ The way positive and negative examples should be arranged in the context pairs i This type of search works specially well for combining multimodal, vector-constrained searches. Qdrant already has extensive support for filters, which constrain the search based on its payload, but using discovery search, you can also constrain the vector space in which the search is performed. - +![Discovery search](/docs/discovery-search.png) The formula for the discovery score can be expressed as: @@ -1100,7 +1100,7 @@ Notes about discovery search: Conversely, in the absence of a target, a rigid integer-by-integer function doesn't provide much guidance for the search when utilizing a proximity graph like HNSW. Instead, context search employs a function derived from the [triplet-loss](/articles/triplet-loss/) concept, which is usually applied during model training. For context search, this function is adapted to steer the search towards areas with fewer negative examples. - +![Context search](/docs/context-search.png) We can directly associate the score function to a loss function, where 0.0 is the maximum score a point can have, which means it is only in positive areas. As soon as a point exists closer to a negative example, its loss will simply be the difference of the positive and negative similarities. diff --git a/qdrant-landing/static/docs/context-search.png b/qdrant-landing/static/docs/context-search.png new file mode 100644 index 000000000..b690d828f Binary files /dev/null and b/qdrant-landing/static/docs/context-search.png differ diff --git a/qdrant-landing/static/docs/discovery-search.png b/qdrant-landing/static/docs/discovery-search.png new file mode 100644 index 000000000..0b283cdb0 Binary files /dev/null and b/qdrant-landing/static/docs/discovery-search.png differ