[docs]classBaseSparseEmbedding(ABC):"""Interface for Sparse embedding models. You can inherit from it and implement your custom sparse embedding model. """
[docs]classBM25SparseEmbedding(BaseSparseEmbedding):"""Sparse embedding model based on BM25. This class uses the BM25 model in Milvus model to implement sparse vector embedding. This model requires pymilvus[model] to be installed. `pip install pymilvus[model]` For more information please refer to: https://milvus.io/docs/embed-with-bm25.md """