Skip to content
RAG Repo

LAION-400M with CLIP Embeddings

A newer edition is available: LAION-5B.

LAION-400M is a pool of 400 million image and caption pairs, assembled by scanning Common Crawl and keeping only those where CLIP, a model that scores how well a picture matches a piece of text, judged the image and its alt-text to be a close fit. The outcome is a large, openly documented set of captioned images that helped train and evaluate a wave of multimodal models, including some of the first open text-to-image systems.

What sets it apart is what travels with the pairs. LAION published the CLIP embeddings, the numeric vectors that capture the meaning of each image and caption, together with pre-built nearest-neighbour indices. That lets you run similarity search immediately, without spending the compute to encode hundreds of millions of items yourself, which is usually the most expensive part of a project this size. In practice you pull the Parquet metadata and the embedding files, load the index, and you have a working image-text retrieval system ready to query or slice down.

It is a strong fit for multimodal RAG and retrieval: standing up an image search engine, gathering a training set for a captioning or retrieval model, or finding visually and semantically similar images at scale. If you want ready-made visual embeddings rather than raw pixels, this saves you the heavy lifting.

The catch is that the release contains image URLs, not the images. You fetch the pictures yourself, and a real share of those links have gone dead over the years, so you will recover fewer than the headline 400 million. The metadata carries a CC BY 4.0 licence, but every image stays under whatever terms its original host set, so the metadata licence and the content licence part ways: reusing the list commercially is fine with attribution, yet you own the rights checks and content safety for anything you download, and the set is known to include unfiltered and unsafe material.

For scale, LAION-5B is the far larger sibling, but LAION-400M's ready-made embeddings make it the friendlier choice when you want a multimodal retrieval prototype running fast.

image-textclipembeddingsmultimodalweb-crawlsimilarity-search

Related sources

Open

Cohere Wikipedia 22-12 Embeddings (per-language)

Wikipedia encoded with the Cohere multilingual-22-12 embedding model, with embeddings (numeric vectors that capture meaning) computed on each article's title plus text. Published per language, covering many including Arabic, German, English, Spanish, French, Hindi, Italian, Japanese, Korean, Simple English, and Chinese. You can stream it rather than download it in full, which matters given the size.

Open

Cohere Wikipedia Multilingual Embeddings (2023-11)

The November 2023 Wikipedia dump across 300+ languages, split into passages and turned into embeddings (numeric vectors that capture meaning) with the Cohere Embed V3 multilingual model. Close to 250 million paragraph embeddings in total. Drop it into a vector database for semantic search over all of Wikipedia, or use it as a knowledge source for multilingual RAG, including cross-lingual search where a query in one language returns relevant results from another.

Open

Google Satellite Embedding (AlphaEarth Foundations)

Global annual satellite embeddings produced by Google and Google DeepMind's AlphaEarth Foundations model. Every 10 metre pixel holds a 64 dimensional vector summarising a year of multi-sensor Earth observation, available yearly from 2017.

Open

Major TOM

An open, globally dense collection of embeddings and ML-ready imagery derived from Copernicus Sentinel data, published by ESA Phi-lab. The embedding expansions run to well over 100 billion vectors covering most of the Earth.