Skip to content

Latest commit

 

History

History
507 lines (321 loc) · 14 KB

File metadata and controls

507 lines (321 loc) · 14 KB
title Optimum
id integrations-optimum
description Optimum integration for Haystack
slug /integrations-optimum

haystack_integrations.components.embedders.optimum.optimization

OptimumEmbedderOptimizationMode

Bases: Enum

ONNX Optimization modes supported by the Optimum Embedders.

See Optimum ONNX optimization docs for more details.

from_str

from_str(string: str) -> OptimumEmbedderOptimizationMode

Create an optimization mode from a string.

Parameters:

  • string (str) – String to convert.

Returns:

  • OptimumEmbedderOptimizationMode – Optimization mode.

OptimumEmbedderOptimizationConfig

Configuration for Optimum Embedder Optimization.

Parameters:

  • mode (OptimumEmbedderOptimizationMode) – Optimization mode.
  • for_gpu (bool) – Whether to optimize for GPUs.

to_optimum_config

to_optimum_config() -> OptimizationConfig

Convert the configuration to a Optimum configuration.

Returns:

  • OptimizationConfig – Optimum configuration.

to_dict

to_dict() -> dict[str, Any]

Convert the configuration to a dictionary.

Returns:

  • dict[str, Any] – Dictionary with serialized data.

from_dict

from_dict(data: dict[str, Any]) -> OptimumEmbedderOptimizationConfig

Create an optimization configuration from a dictionary.

Parameters:

  • data (dict[str, Any]) – Dictionary to deserialize from.

Returns:

  • OptimumEmbedderOptimizationConfig – Optimization configuration.

haystack_integrations.components.embedders.optimum.optimum_document_embedder

OptimumDocumentEmbedder

A component for computing Document embeddings using models loaded with the HuggingFace Optimum library.

Uses the HuggingFace Optimum library and leverages the ONNX runtime for high-speed inference.

The embedding of each Document is stored in the embedding field of the Document.

Usage example:

from haystack.dataclasses import Document
from haystack_integrations.components.embedders.optimum import OptimumDocumentEmbedder

doc = Document(content="I love pizza!")

document_embedder = OptimumDocumentEmbedder(model="sentence-transformers/all-mpnet-base-v2")
# Components warm up automatically on first run.

result = document_embedder.run([doc])
print(result["documents"][0].embedding)

# [0.017020374536514282, -0.023255806416273117, ...]

init

__init__(
    model: str = "sentence-transformers/all-mpnet-base-v2",
    token: Secret | None = Secret.from_env_var("HF_API_TOKEN", strict=False),
    prefix: str = "",
    suffix: str = "",
    normalize_embeddings: bool = True,
    onnx_execution_provider: str = "CPUExecutionProvider",
    pooling_mode: str | OptimumEmbedderPooling | None = None,
    model_kwargs: dict[str, Any] | None = None,
    working_dir: str | None = None,
    optimizer_settings: OptimumEmbedderOptimizationConfig | None = None,
    quantizer_settings: OptimumEmbedderQuantizationConfig | None = None,
    batch_size: int = 32,
    progress_bar: bool = True,
    meta_fields_to_embed: list[str] | None = None,
    embedding_separator: str = "\n",
) -> None

Create a OptimumDocumentEmbedder component.

Parameters:

  • model (str) – A string representing the model id on HF Hub.

  • token (Secret | None) – The HuggingFace token to use as HTTP bearer authorization.

  • prefix (str) – A string to add to the beginning of each text.

  • suffix (str) – A string to add to the end of each text.

  • normalize_embeddings (bool) – Whether to normalize the embeddings to unit length.

  • onnx_execution_provider (str) – The execution provider to use for ONNX models.

    Note: Using the TensorRT execution provider TensorRT requires to build its inference engine ahead of inference, which takes some time due to the model optimization and nodes fusion. To avoid rebuilding the engine every time the model is loaded, ONNX Runtime provides a pair of options to save the engine: trt_engine_cache_enable and trt_engine_cache_path. We recommend setting these two provider options using the model_kwargs parameter, when using the TensorRT execution provider. The usage is as follows:

    embedder = OptimumDocumentEmbedder(
        model="sentence-transformers/all-mpnet-base-v2",
        onnx_execution_provider="TensorrtExecutionProvider",
        model_kwargs={
            "provider_options": {
                "trt_engine_cache_enable": True,
                "trt_engine_cache_path": "tmp/trt_cache",
            }
        },
    )
  • pooling_mode (str | OptimumEmbedderPooling | None) – The pooling mode to use. When None, pooling mode will be inferred from the model config.

  • model_kwargs (dict[str, Any] | None) – Dictionary containing additional keyword arguments to pass to the model. In case of duplication, these kwargs override model, onnx_execution_provider and token initialization parameters.

  • working_dir (str | None) – The directory to use for storing intermediate files generated during model optimization/quantization. Required for optimization and quantization.

  • optimizer_settings (OptimumEmbedderOptimizationConfig | None) – Configuration for Optimum Embedder Optimization. If None, no additional optimization is be applied.

  • quantizer_settings (OptimumEmbedderQuantizationConfig | None) – Configuration for Optimum Embedder Quantization. If None, no quantization is be applied.

  • batch_size (int) – Number of Documents to encode at once.

  • progress_bar (bool) – Whether to show a progress bar or not.

  • meta_fields_to_embed (list[str] | None) – List of meta fields that should be embedded along with the Document text.

  • embedding_separator (str) – Separator used to concatenate the meta fields to the Document text.

warm_up

warm_up() -> None

Initializes the component.

to_dict

to_dict() -> dict[str, Any]

Serializes the component to a dictionary.

Returns:

  • dict[str, Any] – Dictionary with serialized data.

from_dict

from_dict(data: dict[str, Any]) -> OptimumDocumentEmbedder

Deserializes the component from a dictionary.

Parameters:

  • data (dict[str, Any]) – The dictionary to deserialize from.

Returns:

  • OptimumDocumentEmbedder – The deserialized component.

run

run(documents: list[Document]) -> dict[str, list[Document]]

Embed a list of Documents.

The embedding of each Document is stored in the embedding field of the Document.

Parameters:

  • documents (list[Document]) – A list of Documents to embed.

Returns:

  • dict[str, list[Document]] – The updated Documents with their embeddings.

Raises:

  • TypeError – If the input is not a list of Documents.

haystack_integrations.components.embedders.optimum.optimum_text_embedder

OptimumTextEmbedder

A component to embed text using models loaded with the HuggingFace Optimum library.

Uses the HuggingFace Optimum library and leverages the ONNX runtime for high-speed inference.

Usage example:

from haystack_integrations.components.embedders.optimum import OptimumTextEmbedder

text_to_embed = "I love pizza!"

text_embedder = OptimumTextEmbedder(model="sentence-transformers/all-mpnet-base-v2")
# Components warm up automatically on first run.

print(text_embedder.run(text_to_embed))

# {'embedding': [-0.07804739475250244, 0.1498992145061493,, ...]}

init

__init__(
    model: str = "sentence-transformers/all-mpnet-base-v2",
    token: Secret | None = Secret.from_env_var("HF_API_TOKEN", strict=False),
    prefix: str = "",
    suffix: str = "",
    normalize_embeddings: bool = True,
    onnx_execution_provider: str = "CPUExecutionProvider",
    pooling_mode: str | OptimumEmbedderPooling | None = None,
    model_kwargs: dict[str, Any] | None = None,
    working_dir: str | None = None,
    optimizer_settings: OptimumEmbedderOptimizationConfig | None = None,
    quantizer_settings: OptimumEmbedderQuantizationConfig | None = None,
) -> None

Create a OptimumTextEmbedder component.

Parameters:

  • model (str) – A string representing the model id on HF Hub.

  • token (Secret | None) – The HuggingFace token to use as HTTP bearer authorization.

  • prefix (str) – A string to add to the beginning of each text.

  • suffix (str) – A string to add to the end of each text.

  • normalize_embeddings (bool) – Whether to normalize the embeddings to unit length.

  • onnx_execution_provider (str) – The execution provider to use for ONNX models.

    Note: Using the TensorRT execution provider TensorRT requires to build its inference engine ahead of inference, which takes some time due to the model optimization and nodes fusion. To avoid rebuilding the engine every time the model is loaded, ONNX Runtime provides a pair of options to save the engine: trt_engine_cache_enable and trt_engine_cache_path. We recommend setting these two provider options using the model_kwargs parameter, when using the TensorRT execution provider. The usage is as follows:

    embedder = OptimumDocumentEmbedder(
        model="sentence-transformers/all-mpnet-base-v2",
        onnx_execution_provider="TensorrtExecutionProvider",
        model_kwargs={
            "provider_options": {
                "trt_engine_cache_enable": True,
                "trt_engine_cache_path": "tmp/trt_cache",
            }
        },
    )
  • pooling_mode (str | OptimumEmbedderPooling | None) – The pooling mode to use. When None, pooling mode will be inferred from the model config.

  • model_kwargs (dict[str, Any] | None) – Dictionary containing additional keyword arguments to pass to the model. In case of duplication, these kwargs override model, onnx_execution_provider and token initialization parameters.

  • working_dir (str | None) – The directory to use for storing intermediate files generated during model optimization/quantization. Required for optimization and quantization.

  • optimizer_settings (OptimumEmbedderOptimizationConfig | None) – Configuration for Optimum Embedder Optimization. If None, no additional optimization is be applied.

  • quantizer_settings (OptimumEmbedderQuantizationConfig | None) – Configuration for Optimum Embedder Quantization. If None, no quantization is be applied.

warm_up

warm_up() -> None

Initializes the component.

to_dict

to_dict() -> dict[str, Any]

Serializes the component to a dictionary.

Returns:

  • dict[str, Any] – Dictionary with serialized data.

from_dict

from_dict(data: dict[str, Any]) -> OptimumTextEmbedder

Deserializes the component from a dictionary.

Parameters:

  • data (dict[str, Any]) – The dictionary to deserialize from.

Returns:

  • OptimumTextEmbedder – The deserialized component.

run

run(text: str) -> dict[str, list[float]]

Embed a string.

Parameters:

  • text (str) – The text to embed.

Returns:

  • dict[str, list[float]] – The embeddings of the text.

Raises:

  • TypeError – If the input is not a string.

haystack_integrations.components.embedders.optimum.pooling

OptimumEmbedderPooling

Bases: Enum

Pooling modes support by the Optimum Embedders.

from_str

from_str(string: str) -> OptimumEmbedderPooling

Create a pooling mode from a string.

Parameters:

  • string (str) – String to convert.

Returns:

  • OptimumEmbedderPooling – Pooling mode.

haystack_integrations.components.embedders.optimum.quantization

OptimumEmbedderQuantizationMode

Bases: Enum

Dynamic Quantization modes supported by the Optimum Embedders.

See Optimum ONNX quantization docs for more details.

from_str

from_str(string: str) -> OptimumEmbedderQuantizationMode

Create an quantization mode from a string.

Parameters:

  • string (str) – String to convert.

Returns:

  • OptimumEmbedderQuantizationMode – Quantization mode.

OptimumEmbedderQuantizationConfig

Configuration for Optimum Embedder Quantization.

Parameters:

  • mode (OptimumEmbedderQuantizationMode) – Quantization mode.
  • per_channel (bool) – Whether to apply per-channel quantization.

to_optimum_config

to_optimum_config() -> QuantizationConfig

Convert the configuration to a Optimum configuration.

Returns:

  • QuantizationConfig – Optimum configuration.

to_dict

to_dict() -> dict[str, Any]

Convert the configuration to a dictionary.

Returns:

  • dict[str, Any] – Dictionary with serialized data.

from_dict

from_dict(data: dict[str, Any]) -> OptimumEmbedderQuantizationConfig

Create a configuration from a dictionary.

Parameters:

  • data (dict[str, Any]) – Dictionary to deserialize from.

Returns:

  • OptimumEmbedderQuantizationConfig – Quantization configuration.