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.
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", 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:
- Audio files: Download here
- Annotation files (TextGrid): Download here
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},
}