open_genmoji_data / README.md
emon-j's picture
add readme
d161351 verified
|
raw
history blame
945 Bytes
---
dataset_info:
features:
- name: image
dtype: image
- name: caption
dtype: string
splits:
- name: train
num_bytes: 92948199.66
num_examples: 3770
download_size: 85501490
dataset_size: 92948199.66
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# 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.
- `caption`: A textual description of the emoji.
## Example Usage
To load the dataset, use the Hugging Face `datasets` library:
```python
from datasets import load_dataset
dataset = load_dataset("emon-j/genmoji-data")
print(dataset)
example = dataset['train'][0]
print("Caption:", example['caption'])
example_image = example['image']
example_image.show()
```