--- language: - en - zh - ru - th - bn license: cc-by-nc-4.0 multilinguality: - multilingual pretty_name: GlobeAudio task_categories: - audio-text-to-text dataset_info: features: - name: audio dtype: audio: sampling_rate: 44100 - name: question dtype: string - name: option1 dtype: string - name: option2 dtype: string - name: option3 dtype: string - name: option4 dtype: string - name: target dtype: string download_size: 1554418131 dataset_size: 1554462926 tags: - audio - in-the-wild - compound-task - natural - naturalistic - multilingual - multicultural configs: - config_name: en data_files: - split: train path: data/en/en-* default: true - config_name: zh data_files: - split: train path: data/zh/zh-* - config_name: sg data_files: - split: train path: data/sg/sg-* - config_name: ru data_files: - split: train path: data/ru/ru-* - config_name: th data_files: - split: train path: data/th/th-* - config_name: bn data_files: - split: train path: data/bn/bn-* size_categories: - 1K *Isochrony is categorized by syllable complexity and rhythmic unit (Str = stress-timed, Syl = syllable-timed).* Each audio clip is approximately 20-40 seconds long, and contains naturally occurring audio that reflect real-life auditory settings spanning both formal and informal contexts. ## Sample Usage The `datasets` library lets you load and preprocess datasets in Python at scale. You may load the dataset to your local drive with `load_dataset`. For example, to download the English config, specify the corresponding language config name (i.e., "en" for English): ```python from datasets import load_dataset # load a specific language eg. "en", "ru", "zh", "sg", "th", "bn" dataset = load_dataset("iNLP-Lab/GlobeAudio", "en") ```