Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,23 +1,55 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
- name: animated
|
| 11 |
-
dtype: bool
|
| 12 |
-
splits:
|
| 13 |
-
- name: train
|
| 14 |
-
num_bytes: 19269644.0
|
| 15 |
-
num_examples: 55
|
| 16 |
-
download_size: 19271642
|
| 17 |
-
dataset_size: 19269644.0
|
| 18 |
-
configs:
|
| 19 |
-
- config_name: default
|
| 20 |
-
data_files:
|
| 21 |
-
- split: train
|
| 22 |
-
path: data/train-*
|
| 23 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-to-text
|
| 5 |
+
- text-to-image
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
size_categories:
|
| 9 |
+
- n<1K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
+
|
| 12 |
+
# Cat Memes Dataset
|
| 13 |
+
|
| 14 |
+
A collection of famous cat memes and their metadata.
|
| 15 |
+
|
| 16 |
+
## Dataset Description
|
| 17 |
+
|
| 18 |
+
This dataset contains various cat memes with their associated metadata including:
|
| 19 |
+
- Image files
|
| 20 |
+
- Meme IDs
|
| 21 |
+
- Animation status (GIF vs static images)
|
| 22 |
+
|
| 23 |
+
### Dataset Structure
|
| 24 |
+
|
| 25 |
+
- `id`: Unique identifier for each meme
|
| 26 |
+
- `file`: The image file
|
| 27 |
+
- `file_name`: Original filename
|
| 28 |
+
- `animated`: Boolean indicating if the image is animated (GIF)
|
| 29 |
+
|
| 30 |
+
### Usage
|
| 31 |
+
|
| 32 |
+
```python
|
| 33 |
+
from datasets import load_dataset
|
| 34 |
+
|
| 35 |
+
# Load the dataset
|
| 36 |
+
dataset = load_dataset("pielet/cat-memes", split="train")
|
| 37 |
+
|
| 38 |
+
# Access an image
|
| 39 |
+
sample = dataset[0]
|
| 40 |
+
image = sample['file']
|
| 41 |
+
print(f"Meme ID: {sample['id']}")
|
| 42 |
+
print(f"Animated: {sample['animated']}")
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
## Citation
|
| 46 |
+
|
| 47 |
+
If you use this dataset, please cite:
|
| 48 |
+
|
| 49 |
+
```bibtex
|
| 50 |
+
@dataset{cat_memes_2025,
|
| 51 |
+
title={Cat Memes Dataset},
|
| 52 |
+
author={pielet},
|
| 53 |
+
year={2025},
|
| 54 |
+
url={https://huggingface.co/datasets/pielet/cat-memes}
|
| 55 |
+
}
|