Image Classification Model Overview
Image classification models take an image as input and return a predicted label for the image. *all classification variant specifications apply to the Image Classification model type, with the addition of embeddingsPerformance Metrics
Accuracy, Recall, Precision, FPR, FNR, F1, Sensitivity, SpecificityCode Example
TheEmbeddingColumnNames class constructs your embedding objects. You can log them into the platform using a dictionary that maps the embedding feature names to the embedding objects. See our API reference for more details.
Navigate here for step-by-step instructions to view private AWS S3 image links.
- Python Pandas
- Python Single Record
- UI Import JSON Input
- Input for API
Example Row
Image Classification Embedding FeaturesArize supports logging the embedding features associated with the image the model is acting on and the image itself using the See here for more information on embeddings and options for generating them.
| image_vector | image_link | prediction_label | actual_label | prediction_score | actual_score | Timestamp |
|---|---|---|---|---|---|---|
[1.0, 2, 3] | "https://link-to-my-image.png" | car | bus | 0.3 | 1 | 1618590882 |
Google Colaboratory
EmbeddingColumnNames object.-
The
vector_column_nameshould be the name of the column where the embedding vectors are stored. The embedding vector is the dense vector representation of the unstructured input. ⚠️ Note: embedding features are not sparse vectors. -
The
link_to_data_column_nameshould be the name of the column where the URL links to the source images, that your model classifies, are stored.