Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ENH]: adding capability for Spacy embeddings #2049

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
32 changes: 32 additions & 0 deletions chromadb/test/ef/test_spacy_ef.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import pytest
tazarov marked this conversation as resolved.
Show resolved Hide resolved
import numpy
from chromadb.utils.embedding_functions import SpacyEmbeddingFunction

input_list = ["great work by the guy", "Super man is that guy"]
model_name = "en_core_web_md"
unknown_model = "unknown_model"
spacy = pytest.importorskip("spacy", reason="spacy not installed")


def test_spacyembeddingfunction_isnotnone_wheninputisnotnone():
spacy_emb_fn = SpacyEmbeddingFunction(model_name)
assert spacy_emb_fn(input_list) is not None
tazarov marked this conversation as resolved.
Show resolved Hide resolved


def test_spacyembddingfunction_throwserror_whenmodel_notfound():
with pytest.raises(ValueError,
match=r"""spacy models are not downloaded yet, please download them using `spacy download model_name`, Please checkout
for the list of models from: https://spacy.io/usage/models."""):
SpacyEmbeddingFunction(unknown_model)


def test_spacyembddingfunction_isembedding_wheninput_islist():
spacy_emb_fn = SpacyEmbeddingFunction(model_name)
assert type(spacy_emb_fn(input_list)) is list


def test_spacyembeddingfunction_returnslistoflistsofloats():
spacy_emb_fn = SpacyEmbeddingFunction(model_name)
expected_output = spacy_emb_fn(input_list)
assert type(expected_output[0]) is list
assert type(expected_output[0][0]) is numpy.float64
39 changes: 39 additions & 0 deletions chromadb/utils/embedding_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,45 @@ def __call__(self, input: Documents) -> Embeddings:
return cast(Embeddings, self._model.encode(texts_with_instructions).tolist())


class SpacyEmbeddingFunction(EmbeddingFunction[Documents]):
def __init__(self, model_name: str = "en_core_web_lg"):
try:
import spacy
except ImportError:
raise ValueError(
"The spacy python package is not installed. Please install it with `pip install spacy`"
)
self._model_name = model_name

try:
self._nlp = spacy.load("{model}".format(model=self._model_name))
except OSError:
raise ValueError(
"""spacy models are not downloaded yet, please download them using `spacy download model_name`, Please checkout
for the list of models from: https://spacy.io/usage/models. By default the module will load en_core_web_lg
model as it optimizes accuracy and has embeddings in-built, please download and load with `en_core_web_md`
if you want to priortize efficiency over accuracy, the same logic applies for models from other languages also.
language_web_core_sm and language_web_core_trf doesn't have pre-trained embeddings."""
)

def __call__(self, input: Documents) -> Embeddings:
"""
Get the embeddings for a list of texts.

Args:
texts (Documents): A list of texts to get embeddings for.

Returns:
Embeddings: The embeddings for the texts.

Example:
>>> spacy_fn = SpacyEmbeddingFunction(model_name="md")
>>> input = ["Hello, world!", "How are you?"]
>>> embeddings = spacy_fn(input)
"""

return cast(Embeddings, [list(self._nlp(doc).vector.astype("float")) for doc in input])

# In order to remove dependencies on sentence-transformers, which in turn depends on
# pytorch and sentence-piece we have created a default ONNX embedding function that
# implements the same functionality as "all-MiniLM-L6-v2" from sentence-transformers.
Expand Down