CoolFace
30 shown

datasets

Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.

Clear all
01google-research-datasets /conceptual_captions Dataset Card for Conceptual Captions Dataset Summary Conceptual Captions is a dataset consisting of ~3.3M images annotated with captions. In contrast with the curated style of other image caption annotations, Conceptual Caption images and their raw descriptions are harvested from the web, and therefore represent a wider variety of styles. More precisely, the raw descriptions are harvested from the Alt-text HTML attribute associated with web images. To arrive at the… See the full description on the dataset page: https://huggingface.co/datasets/google-research-datasets/conceptual_captions.imageimage-to-text1M<n<10M111 likes12k downloads2y agoHugging Face02lingamvamshikrishnareddy /ramanv-image-captions-realtext100K<n<1M0 likes6.7k downloads24d agoHugging Face03laion /conceptual-captions-12m-webdatasetimage10K<n<100K34 likes6.4k downloads4y agoHugging Face04lambda /pokemon-blip-captionsgated Notice of DMCA Takedown Action We have received a DMCA takedown notice from The Pokémon Company International, Inc. In response to this action, we have taken down the dataset. We appreciate your understanding. imagetext-to-imagen<1K314 likes5.1k downloads3y agoHugging Face05jxie /coco_captions Dataset Card for "coco_captions" More Information needed image100K<n<1M18 likes4.2k downloads3y agoHugging Face06AbstractPhil /conceptual-captions-12m-webdataset-bertstext10M<n<100M1 likes3.4k downloads2mo agoHugging Face07GeroldMeisinger /laion2b-en-a65_cogvlm2-4bit_captions Abstract This dataset contains image captions for the laion2B-en aesthetics>=6.5 image dataset using CogVLM2-4bit with the "laion-pop"-prompt to generate captions which were "likely" used in Stable Diffusion 3 training. From these image captions new synthetic images were generated using stable-diffusion-3-medium (batch-size=8). The synthetic images are best viewed locally by cloning this repo with: git lfs install git clone… See the full description on the dataset page: https://huggingface.co/datasets/GeroldMeisinger/laion2b-en-a65_cogvlm2-4bit_captions.imageimage-classification1K<n<10K6 likes3k downloads2y agoHugging Face08zlab-princeton /i1-captionsi1: A Simple and Fully Open Recipe for Strong Text-to-Image Models Boya Zeng, Tianze Luo, Shu Pu, Jucheng Shen, Taiming Lu, Gabriel Sarch, Zhuang Liu Princeton University [arXiv][code][model][project page] 1. Overview This dataset contains all captions used in our controlled experiments and the final training of the i1 model. Detailed instructions for downloading the corresponding images and matching the image-caption pairs can be found in our codebase. 2.… See the full description on the dataset page: https://huggingface.co/datasets/zlab-princeton/i1-captions.texttext-to-image100M<n<1B22 likes2.4k downloads1mo agoHugging Face09TTS-AGI /majestrino-unified-detailed-captions Majestrino Unified Detailed Captions Filtered subset of laion/majestrino-data containing all samples with unified_detailed_caption. Stats 4,658,407 samples 932 tar files (~1.1 GB each) ~1,017 GB total Format Each tar contains paired .flac + .json files. JSON fields: caption — the unified detailed caption caption_type — always unified_detailed_caption transcription — speech transcription (when available, normalized from multiple source keys) duration — audio… See the full description on the dataset page: https://huggingface.co/datasets/TTS-AGI/majestrino-unified-detailed-captions.audioaudio-classification1M<n<10M3 likes2.4k downloads6mo agoHugging Face10ProGamerGov /synthetic-dataset-1m-dalle3-high-quality-captions Dataset Card for Dalle3 1 Million+ High Quality Captions Alt name: Human Preference Synthetic Dataset Example grids for landscapes, cats, creatures, and fantasy are also available. Description: This dataset comprises of AI-generated images sourced from various websites and individuals, primarily focusing on Dalle 3 content, along with contributions from other AI systems of sufficient quality like Stable Diffusion and Midjourney (MJ v5 and above). As users typically… See the full description on the dataset page: https://huggingface.co/datasets/ProGamerGov/synthetic-dataset-1m-dalle3-high-quality-captions.imagetext-to-image1M<n<10M154 likes2.3k downloads2y agoHugging Face11lingamvamshikrishnareddy /ramanv-image-captions-11gatedtext10M<n<100M2 likes1.7k downloads15d agoHugging Face12friedrichor /ActivityNet_Captions About ActivityNet Captions contains 20K long-form videos (180s as average length) from YouTube and 100K captions. Most of the videos contain over 3 annotated events. We follow the existing works to concatenate multiple short temporal descriptions into long sentences and evaluate ‘paragraph-to-video’ retrieval on this benchmark. We adopt the official split: Train: 10,009 videos, 10,009 captions (concatenate from 37,421 short captions) Test (Val1): 4,917 videos, 4,917 captions… See the full description on the dataset page: https://huggingface.co/datasets/friedrichor/ActivityNet_Captions.texttext-to-video10K<n<100K15 likes1.6k downloads1y agoHugging Face13Felldude /Gradients_Gradients_and_Text_Full_Logic_Captionsimage1K<n<10K2 likes1.5k downloads12d agoHugging Face14ibm-esa-geospatial /Llama3-SSL4EO-S12-v1.1-captions Llama3-SSL4EO-S12-Captions The captions are aligned with the SSL4EO-S12 v1.1 dataset and were automatically generated using the Llama3-LLaVA-Next-8B model. Please find more information regarding the generation and evaluation in the Llama3-MS-CLIP paper. Code: https://github.com/IBM/MS-CLIP Data Structure We provide the captions in two versions: As a single compressed Parquet file per split and as CSV files with 256 captions each that match the Zarr Zip files of the… See the full description on the dataset page: https://huggingface.co/datasets/ibm-esa-geospatial/Llama3-SSL4EO-S12-v1.1-captions.tabularzero-shot-image-classification100K<n<1M5 likes1.3k downloads1y agoHugging Face15Multimodal-Fatima /COCO_captions_train Dataset Card for "COCO_captions_train" More Information needed image100K<n<1M7 likes1.2k downloads4y agoHugging Face16diffusers /pokemon-gpt4-captions Dataset Card for "pokemon-gpt4-captions" This dataset is just lambdalabs/pokemon-blip-captions but the captions come from GPT-4 (Turbo). Code used to generate the captions: import base64 from io import BytesIO import requests from PIL import Image def encode_image(image): buffered = BytesIO() image.save(buffered, format="JPEG") img_str = base64.b64encode(buffered.getvalue()) returnimg_str.decode("utf-8") def create_payload(image_string): payload = {… See the full description on the dataset page: https://huggingface.co/datasets/diffusers/pokemon-gpt4-captions.imagetext-to-imagen<1K42 likes993 downloads3y agoHugging Face17laion /220k-GPT4Vision-captions-from-LIVIS 220k-GPT4Vision-captions-from-LVIS by: Christoph Schuhmann, Peter Bevan, 21 Nov, 2023 This dataset comprises 220,000 captioned images from the LVIS dataset. The captions were generated by summarising the LVIS-Instruct4V dataset released by X2FD. The instructions are converted into captions using Mistral-7B-OpenOrca. PROMPT """<<SYS>> You are a highly intelligent, empathic, helpful, respectful, and honest assistant with high emotional intelligence. Always… See the full description on the dataset page: https://huggingface.co/datasets/laion/220k-GPT4Vision-captions-from-LIVIS.image100K<n<1M64 likes978 downloads3y agoHugging Face18graph-based-captions /GBC10M Graph-based captioning (GBC) is a new image annotation paradigm that combines the strengths of long captions, region captions, and scene graphs GBC interconnects region captions to create a unified description akin to a long caption, while also providing structural information similar to scene graphs. ** The associated data point can be found at demo/water_tower.json Description and data format The GBC10M dataset, derived from the original images in CC12M, is… See the full description on the dataset page: https://huggingface.co/datasets/graph-based-captions/GBC10M.imageimage-to-text10M<n<100M35 likes931 downloads2y agoHugging Face19none-yet /anime-captionsimage100K<n<1M30 likes868 downloads10mo agoHugging Face20shunk031 /STAIR-Captions Dataset Card for STAIR-Captions Dataset Summary STAIR Captions is a large-scale dataset containing 820,310 Japanese captions. This dataset can be used for caption generation, multimodal retrieval, and image generation. Supported Tasks and Leaderboards [More Information Needed] Languages The language data in JDocQA is in Japanese (BCP-47 ja-JP). Dataset Structure Data Instances [More Information Needed]… See the full description on the dataset page: https://huggingface.co/datasets/shunk031/STAIR-Captions.imageimage-to-text100K<n<1M5 likes861 downloads2y agoHugging Face21Multimodal-Fatima /COCO_captions_validation Dataset Card for "COCO_captions_validation" More Information needed image1K<n<10K0 likes840 downloads4y agoHugging Face22Obscure-Entropy /conceptual_captions_jsonimage1M<n<10M0 likes806 downloads2y agoHugging Face23BootsofLagrangian /danbooru-multitier-captions-202606 Danbooru — multi-tier captions (202606) Per-post Danbooru data for the 202606 crawl: native tags, the raw API metadata, model-generated multi-tier natural-language captions (long / refined long / medium / short), and post flags. One row per Danbooru post_id. Images are not included — each post is referenced by post_id, danbooru_url, md5, and the Danbooru CDN URLs. (The two example previews below are downscaled for illustration.) Based on:… See the full description on the dataset page: https://huggingface.co/datasets/BootsofLagrangian/danbooru-multitier-captions-202606.imagetext-to-image10M<n<100M2 likes760 downloads1mo agoHugging Face24clip-benchmark /wds_mscoco_captionsimage10K<n<100K4 likes625 downloads4y agoHugging Face25PursuitOfDataScience /llama4-maverick-coco-captionsimage100K<n<1M0 likes624 downloads1y agoHugging Face26fusing /wikiart_captionsimage1K<n<10K12 likes622 downloads4y agoHugging Face27mrdbourke /learn_hf_food_not_food_image_captions Food/Not Food Image Caption Dataset Small dataset of synthetic food and not food image captions. Text generated using Mistral Chat/Mixtral. Can be used to train a text classifier on food/not_food image captions as a demo before scaling up to a larger dataset. See Colab notebook on how dataset was created. Example usage import random from datasets import load_dataset # Load dataset loaded_dataset = load_dataset("mrdbourke/learn_hf_food_not_food_image_captions") # Get… See the full description on the dataset page: https://huggingface.co/datasets/mrdbourke/learn_hf_food_not_food_image_captions.textn<1K18 likes606 downloads2y agoHugging Face28guruawe /ramanv-image-captions-11gatedtext10K<n<100K6 likes587 downloads9d agoHugging Face29Obscure-Entropy /CONCEPTUAL_CAPTIONS_HU_FILTEREDimage1M<n<10M0 likes520 downloads2y agoHugging Face30ChristophSchuhmann /OpenCLIP-B32-embs-captions-367Mtext10M<n<100M1 likes519 downloads3y agoHugging Face

Listings come live from the Hugging Face Hub API. CoolFace does not host these files.