Skip to content

Commit

Permalink
Merge pull request #54 from Meg528/patch-27
Browse files Browse the repository at this point in the history
Update 3-implementing-vector-search.mdx
  • Loading branch information
sis0k0 authored Sep 18, 2024
2 parents 2ad06c2 + 04b0d71 commit 6a60283
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/7-vector-search/3-implementing-vector-search.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 📘 Implementing Vector Search

There are two components that you will need to do to implement vector search into your application.
There are two components that you will need to implement vector search into your application.

## Vectorize your dataset

Expand All @@ -14,4 +14,4 @@ The second component is to vectorize your query. This is the same process as vec

It is important to use the same encoder for both your dataset and your query. This is because the encoder learns a specific way to represent the data. If you use a different encoder, the vectors will be different and the search will not work.

For this workshop, you will be using one of the provided functions to vectorize your query. Again, the full code to do this on your own is in the Create Vectors section.
For this workshop, you will be using one of the provided functions to vectorize your query. Again, the full code to do this on your own is in the Create Vectors section.

0 comments on commit 6a60283

Please sign in to comment.