Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
openai-cookbook/transition_guides_for_deprecated_API_endpoints/search_functionality_example.py /
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
74 lines (53 sloc)
1.78 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from transformers import GPT2TokenizerFast | |
| import openai | |
| tokenizer = GPT2TokenizerFast.from_pretrained("gpt2") | |
| docs = ["test1", "asdklgjnasdv", "banana", "lord lollipop"] | |
| query = "apple orang asdansbdausd" | |
| def construct_context(query, document): | |
| return "<|endoftext|>{document}\n\n---\n\nThe above passage is related to: {query}".format( | |
| document=document, query=query | |
| ) | |
| def get_score(context, query, log_probs, text_offsets) -> float: | |
| SCORE_MULTIPLIER = 100.0 | |
| log_prob = 0 | |
| count = 0 | |
| cutoff = len(context) - len(query) | |
| for i in range(len(text_offsets) - 1, 0, -1): | |
| log_prob += log_probs[i] | |
| count += 1 | |
| if text_offsets[i] <= cutoff and text_offsets[i] != text_offsets[i - 1]: | |
| break | |
| return log_prob / float(count) * SCORE_MULTIPLIER | |
| def search(query, documents, engine): | |
| prompts = [construct_context(query, doc) for doc in [""] + documents] | |
| resps = openai.Completion.create( | |
| model=engine, | |
| prompt=prompts, | |
| temperature=1.0, | |
| top_p=1.0, | |
| max_tokens=0, | |
| logprobs=0, | |
| n=1, | |
| echo=True, | |
| ) | |
| resps_by_index = {choice["index"]: choice for choice in resps["choices"]} | |
| scores = [ | |
| get_score( | |
| prompts[i], | |
| query, | |
| resps_by_index[i]["logprobs"]["token_logprobs"], | |
| resps_by_index[i]["logprobs"]["text_offset"], | |
| ) | |
| for i in range(len(prompts)) | |
| ] | |
| # Process results | |
| scores = [score - scores[0] for score in scores][1:] | |
| return [ | |
| { | |
| "object": "search_result", | |
| "document": document_idx, | |
| "score": round(score, 3), | |
| } | |
| for document_idx, score in enumerate(scores) | |
| ] | |
| print(search(query=query, documents=docs, engine="davinci")) |