CoolFace
Datasetpublic

nectec/LOTUSDIS

LOTUSDIS Dataset Description How to use You can easily load the dataset using the ๐Ÿค— datasets library. The dataset can be loaded and prepared with a single line of Python code: from datasets import load_dataset lotus_dis = load_dataset("nectec/LOTUSDIS", split="train") To iterate through the dataset without downloading it entirely, you can use streaming mode: from datasets import load_dataset lotus_dis = load_dataset("nectec/LOTUSDIS"โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/nectec/LOTUSDIS.

sourceHugging Facecc-by-sa-4.0updated 1y agoView on Hugging Face
5likes538downloads
Dataset Card

LOTUSDIS

Dataset Description

How to use

You can easily load the dataset using the ๐Ÿค— datasets library. The dataset can be loaded and prepared with a single line of Python code:

python
from datasets import load_dataset
lotus_dis = load_dataset("nectec/LOTUSDIS", split="train")

To iterate through the dataset without downloading it entirely, you can use streaming mode:

python
from datasets import load_dataset
lotus_dis = load_dataset("nectec/LOTUSDIS", split="train", streaming=True)
print(next(iter(lotus_dis)))

Learn more about how to load and prepare audio datasets in the Hugging Face Audio Datasets tutorial.

Full meeting session resources:

Citation

@misc{tipaksorn2025lotusdisthaifarfieldmeeting,
      title={LOTUSDIS: A Thai far-field meeting corpus for robust conversational ASR}, 
      author={Pattara Tipaksorn and Sumonmas Thatphithakkul and Vataya Chunwijitra and Kwanchiva Thangthai},
      year={2025},
      eprint={2509.18722},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2509.18722}, 
}