CoolFace
Datasetpublic

ozertuu/turkish-image-description-dataset-shard-13

Turkish Image Description Dataset - Shard 13 This dataset contains translated image descriptions from English to Turkish. Contents Images with their Turkish and original English descriptions How to use from datasets import load_dataset # Load the dataset dataset = load_dataset("ozertuu/turkish-image-description-dataset-shard-13") # Access data for item in dataset["train"]: image = item["image"] # PIL.Image object turkish_description =… See the full description on the dataset page: https://huggingface.co/datasets/ozertuu/turkish-image-description-dataset-shard-13.

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes107downloads
Dataset Card

Turkish Image Description Dataset - Shard 13

This dataset contains translated image descriptions from English to Turkish.

Contents

  • —Images with their Turkish and original English descriptions

How to use

python
from datasets import load_dataset

# Load the dataset
dataset = load_dataset("ozertuu/turkish-image-description-dataset-shard-13")

# Access data
for item in dataset["train"]:
    image = item["image"]  # PIL.Image object
    turkish_description = item["description"]
    original_description = item["original_description"]
    # Process the data...