# ImageEmbedding

Represents custom features derived from image embeddings for visual content analysis.

ImageEmbedding extends VectorFeature to handle image-based embeddings, providing clustering analysis specifically designed for visual content. This feature type is used to monitor image models and detect visual drift in high-dimensional embedding spaces.

The feature type is automatically set to CustomFeatureType.FROM\_IMAGE\_EMBEDDING and applies clustering to image embeddings for visual pattern analysis.

## Examples

Creating an image embedding feature for product photos:

```python
image_feature = ImageEmbedding(
    name="product_image_clusters",
    column="product_embedding",
    source_column="product_image_url",
    n_clusters=15
)
```

Creating a feature for medical image analysis:

```python
medical_feature = ImageEmbedding(
    name="xray_pattern_clusters",
    column="xray_embedding",
    source_column="xray_image_path",
    n_clusters=10
)
```

## type *: Literal\['FROM\_IMAGE\_EMBEDDING']*

## source\_column *: str*


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.fiddler.ai/api/fiddler-python-client-sdk/schemas/image-embedding.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
