What problem does it solve? Classifying images or searching image collections normally requires labeled training data and custom model training. CLIP removes that requirement by matching images to natural-language descriptions, enabling zero-shot classification, semantic image search, and content moderation without fine-tuning. ## Core Features & Use Cases - Zero-Shot Image Classification: Classify images into arbitrary text-defined categories with no training data, using models from RN50 up to ViT-L/14. - Semantic Image Search & Retrieval: Encode images and text into a shared embedding space for cross-modal search, and integrate embeddings with vector databases like Chroma or FAISS. - Content Moderation: Score images against safety categories such as NSFW or violent content using softmax probabilities. - Use Case: Index a folder of product photos with CLIP embeddings, then let users search the catalog with queries like "a red sneaker on white background" and retrieve the top matches by cosine similarity. ## Quick Start Use the clip skill to classify the attached photo against the labels dog, cat, bird, and car and show the probability for each.