Created
October 21, 2024 18:11
-
-
Save davidmezzetti/56c99960e4f6e8103846a7a9d4d003f7 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
from txtai import Embeddings | |
embeddings = Embeddings( | |
method="model2vec", | |
path="minishlab/M2V_base_output" | |
) | |
embeddings.index(["test"]) | |
embeddings.search("test") | |
# [(0, 1.0)] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment