Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ai/concepts/vector-search-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ TiDB vector search identifies the top-k nearest neighbor (KNN) vectors by using

![The Schematic TiDB Vector Search](/media/vector-search/embedding-search.png)

As a relational database with integrated vector search capabilities, TiDB enables you to store data and their corresponding vector representations (that is, vector embeddings) together in one database. You can choose any of the following ways for storage:
As a relational database with integrated vector search capabilities, TiDB enables you to store data and their corresponding vector representations (vector embeddings) together in one database. You can store your data in either of the following ways:
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

low

To adhere to the style guide principle of avoiding unnecessary words and repetition, we can simplify "their corresponding vector representations (vector embeddings)" to just "their vector embeddings". Since "vector embedding" is already defined earlier in the document, this makes the sentence more concise and direct.

Suggested change
As a relational database with integrated vector search capabilities, TiDB enables you to store data and their corresponding vector representations (vector embeddings) together in one database. You can store your data in either of the following ways:
As a relational database with integrated vector search capabilities, TiDB enables you to store data and their vector embeddings together in one database. You can store your data in either of the following ways:
References
  1. Avoid unnecessary words and repetition. (link)


- Store data and their corresponding vector representations in different columns of the same table.
- Store data and their corresponding vector representation in different tables. In this way, you need to use `JOIN` queries to combine the tables when retrieving data.
Expand Down