Skip to content

Commit e75a665

Browse files
authored
[8.6] Adds machine learning release highlights. (#91903)
1 parent fd2fbdd commit e75a665

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

docs/changelog/90450.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
pr: 90450
2+
summary: Semantic search endpoint
3+
area: Machine Learning
4+
type: feature
5+
issues: []
6+
highlight:
7+
title: Semantic search
8+
body: |-
9+
Semantic search uses an NLP model to generate a dense vector representation
10+
of the given query text. This vector, known as an embedding, is passed to
11+
kNN vector search to find related documents which are nearby in the vector
12+
space. Documents that are close together in vector space have a semantically
13+
similar meaning. This process makes it possible to find results that are not
14+
only lexically similar to the query but in the intent or the meaning of the
15+
text. For example the NLP model may understand that some words or phrases
16+
are essentially synonyms and unearth documents that would not be discovered
17+
by traditional lexical match. The potential of semantic search is boosted by
18+
combining kNN vector search with Elasticsearch queries in a hybrid retrieval
19+
strategy.
20+
21+
[discrete]
22+
[[categorize-text-agg-ga]]
23+
=== The categorize text aggregation is generally available
24+
25+
The {ref}/search-aggregations-bucket-categorize-text-aggregation.html[multi-bucket aggregation]
26+
that can group semi-structured text into categories is generally available
27+
from 8.6.
28+
29+
notable: true

0 commit comments

Comments
 (0)