You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

EchoVision-110K

A curated, copyright-filtered image–caption dataset for text-to-image research.

~110,000 image–caption pairs · max 768 px · machine-generated captions · copyright-filtered · compressed JPEG


Dataset Summary

EchoVision-110K is a large-scale curated dataset designed for training text-to-image models. It consists of square-cropped web images paired with detailed machine-generated captions.

  • Images: max side 768 px, optimized JPEG (quality 85).
  • Captions: generated by Florence-2-large (<MORE_DETAILED_CAPTION>), with high-quality single-sentence captions from Qwen2-VL-2B-Instruct and BLIP fallbacks.
  • Safety: a two-layer copyright filter (deterministic franchise/brand/watermark text blacklist + CLIP zero-shot visual flagging) removed logos, watermarks, and licensed-franchise content.

Usage

from datasets import load_dataset

ds = load_dataset("Maxilicious20/echo-vision-110k")
sample = ds["train"][0]
sample["image"]     # PIL.Image  (<=768px)
sample["caption"]   # str
Downloads last month
22