metadata
license: mit
task_categories:
- image-to-text
- text-to-image
language:
- en
size_categories:
- n<1K
Cat Memes Dataset
A collection of famous cat memes and their metadata.
Dataset Description
This dataset contains various cat memes with their associated metadata including:
- Image files
- Meme IDs
- Animation status (GIF vs static images)
Dataset Structure
id: Unique identifier for each memefile: The image filefile_name: Original filenameanimated: Boolean indicating if the image is animated (GIF)
Usage
from datasets import load_dataset
# Load the dataset
dataset = load_dataset("pielet/cat-memes", split="train")
# Access an image
sample = dataset[0]
image = sample['file']
print(f"Meme ID: {sample['id']}")
print(f"Animated: {sample['animated']}")
Citation
If you use this dataset, please cite:
@dataset{cat_memes_2025,
title={Cat Memes Dataset},
author={pielet},
year={2025},
url={https://huggingface.co/datasets/pielet/cat-memes}
}