Last active
August 14, 2023 13:11
-
-
Save Barqawiz/861b69082e6db9a91f38caa5dd7edc05 to your computer and use it in GitHub Desktop.
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
{ | |
'openai/gpt-4': [ | |
{ | |
prediction: '<model-output>', | |
score_cosine_similarity: <score>, | |
score_euclidean_distance: <score> | |
} | |
], | |
'cohere/command': [ | |
{ | |
prediction: '<model-output>', | |
score_cosine_similarity: <score>, | |
score_euclidean_distance: <score> | |
} | |
], | |
'replicate/70b-chat': [ | |
prediction: '<model-output>', | |
score_cosine_similarity: <score>, | |
score_euclidean_distance: <score> | |
], | |
lookup: { | |
cosine_similarity: 'a value closer to 1 indicates a higher degree of similarity between two vectors', | |
euclidean_distance: 'the lower the value, the closer the two points' | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment