Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

FLEURS (Lhotse cuts)

Each language is a separate config. Load a single language's cuts as a HF Dataset of raw manifest records with, e.g.:

from datasets import load_dataset
ds = load_dataset("your-org/REPO_NAME", "bg_bg", split="train")

If audio shards (recording.NNNNN.tar) are present alongside the cuts, the LANG/SPLIT/ folder is a valid Lhotse Shar directory. Download it (e.g. via snapshot_download) and load with Lhotse directly:

from huggingface_hub import snapshot_download
from lhotse import CutSet

local_dir = snapshot_download("your-org/REPO_NAME", repo_type="dataset", allow_patterns="bg_bg/train/*")
cuts = CutSet.from_shar(in_dir=f"{local_dir}/bg_bg/train")
Downloads last month
1,228