File size: 1,028 Bytes
38e6ddf
66e9a15
 
 
 
 
 
 
 
38e6ddf
66e9a15
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
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 meme
- `file`: The image file
- `file_name`: Original filename
- `animated`: Boolean indicating if the image is animated (GIF)

### Usage

```python
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:

```bibtex
@dataset{cat_memes_2025,
  title={Cat Memes Dataset},
  author={pielet},
  year={2025},
  url={https://huggingface.co/datasets/pielet/cat-memes}
}