clip

Index and retrieve cross-modal information from images and text using pretrained CLIP models.

Updated Jun 19, 2026
One-click install
npx skills add https://github.com/AnandaAnugrahHandyanto/savarez_agent --skill clip-anandaanugrahhandyanto
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: clip
Source: https://github.com/AnandaAnugrahHandyanto/savarez_agent/tree/main/optional-skills/mlops/clip
Command: npx skills add https://github.com/AnandaAnugrahHandyanto/savarez_agent --skill clip-anandaanugrahhandyanto

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

CLIP enables cross-modal understanding by connecting images and text to perform zero-shot classification, semantic search, and content moderation without task-specific training.

Core Features & Use Cases

  • Zero-shot image classification: match images to text prompts without fine-tuning.
  • Image-text similarity & cross-modal retrieval: rank images by text queries and vice versa.
  • Semantic search & moderation: find visually similar content or filter inappropriate material.

Quick Start

Load a pretrained CLIP model and compute embeddings for an image and a set of text prompts to obtain similarity scores.

Frequently Asked Questions about clip

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How does zero-shot image classification work with CLIP?

Zero-shot image classification with CLIP computes cross-modal embeddings to match images directly to text prompts without requiring task-specific fine-tuning, enabling flexible visual categorization.

How do I perform semantic search across images using text queries?

Semantic search across images uses CLIP to calculate image-text similarity scores, ranking and retrieving visually relevant content based on natural language text inputs.

Can I use pretrained CLIP models for cross-modal retrieval in batch workflows?

Yes, pretrained CLIP models support cross-modal retrieval in batch or streaming workflows by loading models in Python and PyTorch to compute embeddings for large datasets.

Do I need PyTorch to compute image-text similarity scores?

Yes, computing image-text similarity scores with CLIP requires Python, PyTorch, and the CLIP model suite to load pretrained models and perform cross-modal similarity scoring.

What is the best way to moderate visual content without collecting training data?

Content moderation without training data uses CLIP to perform zero-shot filtering of inappropriate material by computing similarity between visual content and moderation text prompts.

How does cross-modal retrieval handle matching text to images?

Cross-modal retrieval uses CLIP to index and compute embeddings for both images and text, allowing you to rank images by text queries or retrieve text descriptions from image inputs.