Views
No views yet
meeting_transcription_audio_th datasetmeeting_transcription_audio_th dataset, which consists of Thai online meeting recordings and gold-standard transcripts from the 2025-ASR competition. The fine-tuning process focused on multi-speaker and acoustically challenging scenarios (noise, reverberation, overlapping speech) to improve performance in meeting transcription tasks.meeting_transcription_audio_thdatasets.1from transformers import WhisperProcessor, WhisperForConditionalGeneration
2import torchaudio
3
4processor = WhisperProcessor.from_pretrained("Konthee/whisper-th-large-v3-meeting-transcription")
5model = WhisperForConditionalGeneration.from_pretrained("Konthee/whisper-th-large-v3-meeting-transcription")
6
7# load audio
8speech_array, sampling_rate = torchaudio.load("meeting.wav")
9inputs = processor(speech_array, sampling_rate=sampling_rate, return_tensors="pt")
10
11# generate transcription
12generated_ids = model.generate(inputs.input_features)
13transcription = processor.batch_decode(generated_ids, skip_special_tokens=True)
14print(transcription)| Split | WER (%) |
|---|---|
| public | 13.51 |
| private | 18.70 |
AI Thailand Benchmark Programs. (2025). 2025-ASR: Automatic Speech Recognition Task. Retrieved June 23, 2025, from https://benchmark.ai.in.th/task/detail/2025-asr
1@misc{meeting_transcription_audio_2025,
2 title = {meeting_transcription_audio_th: A Thai Online-Meeting Speech Corpus for Multi-Speaker ASR},
3 author = {AI Thailand Benchmark Programs and Konthee Bo},
4 year = {2025},
5 howpublished = {https://huggingface.co/datasets/Konthee/meeting_transcription_audio_th},
6 note = {Dataset reformatted and packaged by Konthee Bo; original data from the 2025-ASR competition},
7 license = {CC-BY-SA 4.0}