-
-
Save jvrdnd/b5f54b315e086dc54527454bf09a78e6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| distance = lambda a, b: (a @ b.T) / (np.linalg.norm(a) * np.linalg.norm(b)) | |
| norms = distance(index["embeddings"], query_embedding) | |
| top_k = np.argpartition(norms, -k)[-k:] | |
| documents = list(itemgetter(*top_k)(index["documents"])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment