The dataset viewer is not available for this split.
Not found.
Error code: ResponseNotFound
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
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,467