You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

Kurdish Bidirectional Translation Dataset

Overview

This dataset contains bidirectional translation pairs for Kurdish (Central Kurdish - Sorani script) with English, Arabic, and Persian.

Each sample includes:

  • translation: Forward translation (Source → Kurdish)
  • back_translation: Reverse translation (Kurdish → Source)

Dataset Details

  • Total Samples: 627,103
  • Languages: Kurdish (ckb), English (en), Arabic (ar), Persian (fa)
  • Format: JSON conversations with instructions

Structure

{
  "id": "xp3x_english_123",
  "translation": '[{"user":"تکایە ئەم دەقە لە ئینگلیزییەوە وەربگێڕە بۆ کوردی\n\n[English text]"},{"assistant":"[Kurdish text]"}]',
  "back_translation": '[{"user":"تکایە ئەم دەقە لە کوردییەوە وەربگێڕە بۆ ئینگلیزی\n\n[Kurdish text]"},{"assistant":"[English text]"}]',
  "source_dataset": "xP3x_english"
}

Preprocessing

All Kurdish text preprocessed with asosoft:

  • Normalize
  • NormalizePunctuations
  • TrimLine

Usage

from datasets import load_dataset
import json

# Load dataset
ds = load_dataset("shiima/kurdish-bidirectional-translation-finall")

# Get a sample
sample = ds['train'][0]

# Parse translation
translation = json.loads(sample['translation'])
print(f"User: {translation[0]['user']}")
print(f"Assistant: {translation[1]['assistant']}")

Source Datasets

License

Apache 2.0


Created: 2026-02-08 Pipeline: Memory-optimized chunked processing

Downloads last month
8