Datasets:

Modalities:
Audio
Text
Formats:
parquet
Languages:
Thai
ArXiv:
Libraries:
Datasets
Dask
License:
File size: 2,138 Bytes
d8b0e71
ad1618b
d8b0e71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
45145d7
d8b0e71
 
 
 
 
 
 
 
 
42669a4
d8b0e71
 
ad1618b
d8b0e71
 
 
 
 
ad1618b
d8b0e71
 
 
 
 
 
 
1994457
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
license: cc-by-sa-4.0
language:
- th
tags:
- speech-recognition
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: validation
    path: data/validation-*
  - split: test
    path: data/test-*
dataset_info:
  features:
  - name: audio
    dtype:
      audio:
        sampling_rate: 16000
  - name: sentence
    dtype: string
  - name: speaker_id
    dtype: string
  - name: mic
    dtype: string
  - name: duration
    dtype: float64
  splits:
  - name: train
    num_bytes: 8212128894.78
    num_examples: 120245
  - name: validation
    num_bytes: 1296622162.01
    num_examples: 13090
  - name: test
    num_bytes: 1623791447.32
    num_examples: 27580
  download_size: 13180732521
  dataset_size: 11132542504.109999
---

# 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](https://huggingface.co/blog/audio-datasets).

Full meeting session resources:
- Audio files: [Download here](https://drive.google.com/file/d/1ofw99Y5W1p8f1DSaIbJkS0xWtuTI2Hrc/view)
- Annotation files (TextGrid): [Download here](https://drive.google.com/file/d/14fMv_X_8sGDPGbnU-hpJ85Mug43AHlgO/view)

## 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}, 
}
```