File size: 1,549 Bytes
161b11f
 
b790894
161b11f
b790894
161b11f
b790894
161b11f
 
b790894
161b11f
 
b790894
 
 
161b11f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
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.