Skip to content

Commit

Permalink
removes old references to query and doc models
Browse files Browse the repository at this point in the history
  • Loading branch information
ted-at-openai committed Apr 21, 2023
1 parent 793384f commit 5424645
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/Semantic_text_search_using_embeddings.ipynb
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"cells": [
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"## Semantic text search using embeddings\n",
"\n",
"We can search through all our reviews semantically in a very efficient manner and at very low cost, by simply embedding our search query, and then finding the most similar reviews. The dataset is created in the [Obtain_dataset Notebook](Obtain_dataset.ipynb)."
"We can search through all our reviews semantically in a very efficient manner and at very low cost, by embedding our search query, and then finding the most similar reviews. The dataset is created in the [Obtain_dataset Notebook](Obtain_dataset.ipynb)."
]
},
{
Expand All @@ -25,10 +26,11 @@
]
},
{
"attachments": {},
"cell_type": "markdown",
"metadata": {},
"source": [
"Remember to use the documents embedding engine for documents (in this case reviews), and query embedding engine for queries. Note that here we just compare the cosine similarity of the embeddings of the query and the documents, and show top_n best matches."
"Here we compare the cosine similarity of the embeddings of the query and the documents, and show top_n best matches."
]
},
{
Expand Down

0 comments on commit 5424645

Please sign in to comment.