strikerData / dataset_info.yaml
bonchardon's picture
Update dataset_info.yaml
b790894 verified
raw
history blame
1.55 kB
configs:
- config_name: default
data_files: ["metadata.csv"] # flat list, no 'train:' key
description: |
Merged metadata file for the StrikerData dataset.
Each row corresponds to an audio sample and contains metadata such as
file name, direct audio URL, transcription, and other relevant information.
schema:
features:
- name: file_name
dtype: string
description: Audio file name.
- name: audio
dtype: audio
description: Direct URL or relative path to the audio file (.flac format).
- name: text
dtype: string
description: Transcribed text of the audio file.
- name: duration_sec
dtype: float32
description: Duration of the audio clip in seconds.
- name: sample_rate
dtype: int32
description: Sample rate of the audio file in Hz.
- name: label
dtype: string
description: Label or category of the audio file (e.g., clean_human_speech).
- name: source_dataset
dtype: string
description: Name of the original dataset the sample was taken from.
- name: language
dtype: string
description: Language code or name (e.g., en for English).
- name: notes
dtype: string
description: Additional notes or comments about the sample.
- name: source_folder
dtype: string
description: Folder path inside the dataset where this sample originated.