You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: solutions/search/serverless-elasticsearch-get-started-semantic.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ _Semantic search_ is a type of AI-powered search that enables you to use intuiti
12
12
It returns results that match the meaning of a query, as opposed to literal keyword matches.
13
13
For example, if you want to search for workplace guidelines on a second income, you could search for "side hustle", which is not a term you're likely to see in a formal HR document.
14
14
15
-
Elastic offers an out-of-the-box Learned Sparse Encoder model ([ELSER](/explore-analyze/machine-learning/nlp/ml-nlp-elser)) that outperforms on a variety of data sets, such as financial data, weather records, and question-answer pairs.
15
+
Elastic offers an out-of-the-box Learned Sparse Encoder model ([ELSER](/explore-analyze/machine-learning/nlp/ml-nlp-elser.md)) that outperforms on a variety of data sets, such as financial data, weather records, and question-answer pairs.
16
16
The model is built to provide great relevance across domains, without the need for additional fine tuning.
17
17
If you want to check out all the use cases and implementation paths, go to [](/solutions/search/ai-search/ai-search.md).
18
18
@@ -142,7 +142,7 @@ POST /semantic-index/_search
142
142
}
143
143
```
144
144
145
-
This is a [semantic](/reference/query-languages/query-dsl/query-dsl-semantic-query.md) query that is expressed in [Query Domain Specific Language](/explore-analyze/query-filter/languages/querydsl.md) (DSL), which is the primary query language for {{es}}.
145
+
This is a [semantic](elasticsearch://reference/query-languages/query-dsl/query-dsl-semantic-query.md) query that is expressed in [Query Domain Specific Language](/explore-analyze/query-filter/languages/querydsl.md) (DSL), which is the primary query language for {{es}}.
146
146
147
147
The query is translated automatically into a vector representation and runs against the contents of the semantic text field.
148
148
The search results are sorted by a relevance score, which measures how well each document matches the query.
@@ -176,7 +176,7 @@ In this example, the document related to Rocky Mountain National park has the hi
176
176
::::
177
177
::::{step} Run a match query in ES|QL
178
178
179
-
Another way to try out semantic search is by using the [match](/query-languages/esql/functions-operators/search-functions.md#esql-match) search function in the [Elasticsearch Query Language](/explore-analyze/query-filter/languages/esql.md) (ES|QL).
179
+
Another way to try out semantic search is by using the [match](elasticsearch://query-languages/esql/functions-operators/search-functions.md#esql-match) search function in the [Elasticsearch Query Language](/explore-analyze/query-filter/languages/esql.md) (ES|QL).
180
180
181
181
Go to **Discover** and select **Try ES|QL** from the application menu bar.
182
182
@@ -195,7 +195,7 @@ FROM semantic-index METADATA _score <1>
195
195
| LIMIT 1000 <5>
196
196
```
197
197
198
-
1. The FROM source command returns a table of data. Each row in the table represents a document. The `METADATA` clause provides access to the query relevance score, which is a [metadata field](/reference/query-languages/esql/esql-metadata-fields.md).
198
+
1. The FROM source command returns a table of data. Each row in the table represents a document. The `METADATA` clause provides access to the query relevance score, which is a [metadata field](elasticsearch://reference/query-languages/esql/esql-metadata-fields.md).
199
199
2. A simplified syntax for the `MATCH` search function, this command performs a semantic query on the specified field.
200
200
3. The KEEP processing command affects the columns and their order in the results table.
201
201
4. The results are sorted in descending order based on the `_score`.
0 commit comments