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.

TKT Song

Public Taiwanese Hokkien song dataset in Hugging Face AudioFolder layout.

This dataset contains rows where all three resources are available and line-aligned:

  • song audio converted to 16 kHz mono FLAC
  • Han-character lyrics in lyrics.han
  • Hokkien romanization in lyrics.hokkien

Current build row count: 29384.

Schema

  • audio: Hugging Face Audio feature generated from file_name
  • source_id: source lyrics id
  • title: source song title
  • duration_seconds: YouTube duration when available
  • lyrics.han: Han-character lyrics
  • lyrics.hokkien: Hokkien romanization
  • line_pairs: line-level Han/Hokkien pairs
  • youtube_url, youtube_id, youtube_title, youtube_channel, youtube_channel_id, youtube_channel_url, youtube_upload_date, youtube_duration_seconds, youtube_view_count, youtube_like_count, youtube_tags: YouTube metadata from yt-dlp
  • artist_candidates: heuristic artist candidates inferred from YouTube metadata
  • artist_source: provenance for artist_candidates; heuristic values are not verified ground truth

No YouTube subtitle/caption text is included in this build.

Loading

from datasets import load_dataset, Audio

ds = load_dataset("voidful/tkt-song", split="train")
ds = ds.cast_column("audio", Audio(sampling_rate=16000))
print(ds[0])
Downloads last month
53