Let Arize Generate Your Embeddings
Only available in arize>=6.0.0
What are Auto-Embeddings?
Generating embeddings is likely another problem to solve, on top of ensuring your model is performing properly. With our Python SDK, you can offload that task to Arize and we will generate the embeddings for you. We use large, pre-trained models that will capture information from your inputs and encode it into embedding vectors.
We extract the embeddings in the appropriate way depending on your use case, and we return it to you to include in your pandas DataFrame, which you then send to Arize.
Auto-Embeddings works end-to-end, you don't have to worry about formatting your inputs for the correct model. By simply passing your input, an embedding will come out as a result. We take care of everything in between.
How to enable Auto-Embeddings?
If you want to use this functionality as part of our Python SDK, you need to install it with the extra dependencies using pip install arize[AutoEmbeddings]
.
Supported models
You can use any model available in the Hugging Face Hub, public or private. If you are using a private model, you will need to authenticate with Hugging Face first.
If you are using arize<7.3.0, you will have a more restricted list of supported models. You can access it by running
There are thousands of models available in the Hugging Face Hub. If you find one where our implementation of AutoEmbeddings
breaks, please reach out to us at support@arize.com or in our community Slack!
Recommended models
We recommend using the same model to generate embeddings as the one generating predictions. However, if you don't have said model in the Hugging Face Hub, choosing a model to generate your embeddings can be a daunting task. The following is a list of models we have experimented with and recommend as a starting point:
Task | Family | |
---|---|---|
Image Classification | ViT | |
Image Classification | ViT | |
Image Classification | ViT | |
Image Classification | ViT | |
Object Detection | DETR | |
Object Detection | DETR |
*Note: You can replace the keyword "base" with "large" and use larger models, achieving better performance but with a higher compute time.
Default models
Arize AutoEmbeddings comes with defaulted models from the list above. You can find what models are set as default for each use-case by running:
How do they work?
Auto-Embeddings is designed to require minimal code from the user. We only require two steps:
Create the generator: you simply instantiate the generator using
EmbeddingGenerator.from_use_case()
and passing information about your use case, the model to use, and more options depending on the use case; see examples below.Let Arize generate your embeddings: obtain your embeddings column by calling
generator.generate_embedding()
and passing the column containing your inputs; see examples below.
Use Case Examples
Computer Vision
Natural Language Processing
Tabular Data
Arize can generate embeddings for your tabular data as well. This is a useful way to detect and debug multivariate drift. For more information, go to the docs here.
Arize expects the DataFrame's index to be sorted and begin at 0. If you perform operations that might affect the index prior to generating embeddings, reset the index as follows:
Additional Resources
Check out our tutorials on generating embeddings for different use cases using Arize.
Use-Case | Code |
---|---|
NLP Sentiment Classification | |
CV Image Classification | |
Large Language Models | |
Embeddings for Tabular Data |
Last updated