CoolFace
Datasetpublic

emon-j/open_genmoji_data

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: grinning face emoji. 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 =… See the full description on the dataset page: https://huggingface.co/datasets/emon-j/open_genmoji_data.

sourceHugging Faceupdated 2y agoView on Hugging Face
1likes23downloads
Dataset Card

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

  • 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()