Skip to content

Commit 4ca75d7

Browse files
committed
Machine learning: Implement suggestions by CodeRabbit
1 parent 7395fb1 commit 4ca75d7

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

docs/feature/query/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ search, all based on vanilla SQL.
167167
- {ref}`hybrid-search`
168168

169169
## Text-to-SQL
170+
Natural language to SQL conversions using adapters and frameworks.
170171
- {ref}`text-to-sql`
171172

172173
## Time Bucketing

docs/feature/search/vector/index.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ CrateDB can be used as a [vector database] (VDBMS) for storing and retrieving
2323
vector embeddings.
2424

2525
CrateDB's FLOAT_VECTOR data type implements a vector store and the k-nearest
26-
neighbour (kNN) search algorithm to find vectors that are similar to a query
26+
neighbor (kNN) search algorithm to find vectors that are similar to a query
2727
vector. This works by using its accompanying KNN_MATCH and VECTOR_SIMILARITY
28-
functions, effectively conducting HNSW semantic similarity searches on them,
28+
functions to perform HNSW-based semantic similarity search,
2929
also known as vector search.
3030

3131
:::{rubric} About
@@ -39,9 +39,8 @@ search finds similar data using approximate nearest neighbor (ANN) algorithms.
3939
Compared to traditional keyword search, vector search yields more relevant
4040
results and executes faster.
4141

42-
Feature vectors may be computed from raw data using machine learning
43-
methods such as feature extraction algorithms, word embeddings, or deep
44-
learning networks.
42+
Feature vectors are computed from raw data via ML methods such as feature
43+
extraction, word embeddings, or deep neural networks.
4544

4645

4746
:::{rubric} Details

docs/solution/machine-learning/index.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ often private or real-time.
3131
:link: vector-search
3232
:link-type: ref
3333
CrateDB's FLOAT_VECTOR data type implements a vector store and the k-nearest
34-
neighbour (kNN) search algorithm to find vectors that are similar to a query
34+
neighbor (kNN) search algorithm to find vectors that are similar to a query
3535
vector.
3636
+++
3737
Vector search on machine learning embeddings: CrateDB is all you need.
@@ -55,9 +55,8 @@ LangChain is a framework for developing applications powered by language models,
5555
written in Python, and with a strong focus on composability.
5656
It supports retrieval-augmented generation (RAG).
5757
+++
58-
The LangChain adapter for CrateDB provides support to use CrateDB as a vector
59-
store database, to load documents using LangChain’s DocumentLoader, and also
60-
supports LangChain’s conversational memory subsystem.
58+
The LangChain adapter lets you use CrateDB as a vector store database, load
59+
documents via DocumentLoader, and use LangChain’s conversational memory.
6160
:::
6261

6362
::::

0 commit comments

Comments
 (0)