Datasets:
File size: 829 Bytes
c5c583f 057f4d6 d161351 40b5b33 9716c14 d161351 baa168c d161351 2620d8c |
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 |
---
task_categories:
- image-to-image
language:
- en
size_categories:
- 1K<n<10K
---
# GenMoji Dataset
This repository hosts the **GenMoji Dataset**, a collection of Apple emojis sourced from Emojigraph, along with their respective captions.
## Dataset Overview
- **Total Examples:** 3,770
- **Features:**
- `image`: An emoji image file.
![image/png](https://cdn-uploads.huggingface.co/production/uploads/64ed4009555440894012fa98/gFOxbIR9x0GTVzz4DUO4B.png)
- `caption`: grinning face emoji.
## Example Usage
To load the dataset, use the Hugging Face `datasets` library:
```python
from datasets import load_dataset
dataset = load_dataset("emon-j/open_genmoji_data")
print(dataset)
example = dataset['train'][0]
print("Caption:", example['caption'])
example_image = example['image']
example_image.show()
``` |