From a8add5b4c62f99104ed433b0f02349dbbbddc012 Mon Sep 17 00:00:00 2001 From: Alice Chen <46392+chena@users.noreply.github.com> Date: Tue, 18 Apr 2023 13:32:33 +0800 Subject: [PATCH] [Fix] Typo and grammar fix in Question_answering_using_embeddings.ipynb --- examples/Question_answering_using_embeddings.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Question_answering_using_embeddings.ipynb b/examples/Question_answering_using_embeddings.ipynb index 9e1ff3f0..4d7fdb04 100644 --- a/examples/Question_answering_using_embeddings.ipynb +++ b/examples/Question_answering_using_embeddings.ipynb @@ -70,7 +70,7 @@ "\n", "This example notebook uses embedding-based search. [Embeddings](https://platform.openai.com/docs/guides/embeddings) are simple to implement and work especially well with questions, as questions often don't lexically overlap with their answers.\n", "\n", - "Consider embeddings-only search as a starting point for your own system. Better search systems might combine multiple search methods, along with features like popularity, recency, user history, redundancy with prior search results, click rate data, etc. Q&A retrieval performance may be also be improved with techniques like [HyDE](https://arxiv.org/abs/2212.10496), in which questions are first transformed into hypothetical answers before being embedded. Similarly, GPT can also potentially improve search results by automatically transforming questions into sets of keywords or search terms." + "Consider embeddings-only search as a starting point for your own system. Better search systems might combine multiple search methods, along with features like popularity, recency, user history, redundancy with prior search results, click rate data, etc. Q&A retrieval performance may also be improved with techniques like [HyDE](https://arxiv.org/abs/2212.10496), in which questions are first transformed into hypothetical answers before being embedded. Similarly, GPT can also potentially improve search results by automatically transforming questions into sets of keywords or search terms." ] }, { @@ -905,7 +905,7 @@ "Below, we define a function `ask` that:\n", "- Takes a user query\n", "- Searches for text relevant to the query\n", - "- Stuffs that text into a mesage for GPT\n", + "- Stuffs that text into a message for GPT\n", "- Sends the message to GPT\n", "- Returns GPT's answer" ]