Datasets:
metadata
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
Example Usage
To load the dataset, use the Hugging Face datasets
library:
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()