[Fix] Typo and grammar fix in Question_answering_using_embeddings.ipynb

pull/357/head
Alice Chen 1 year ago committed by GitHub
parent d67c4181ab
commit a8add5b4c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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"
]

Loading…
Cancel
Save