File size: 945 Bytes
c5c583f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d161351
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
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()
```