File size: 1,131 Bytes
7af7a02
 
574ec02
 
7af7a02
574ec02
 
5e4519e
 
7af7a02
 
 
 
 
 
 
1e9ccec
 
 
 
 
 
 
 
 
7af7a02
 
 
f31ceb5
 
 
 
 
 
 
 
 
 
 
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
---
tags:
  - audio

configs:
- config_name: test
  data_files: "data/test.parquet"
- config_name: small_test
  data_files: "data/small_test.parquet"
---
### About dataset
It is a dataset of multispeaker speech with noise  
each sample is at most 30 seconds 

### Loading script
```
>>> data_files = {"train": "data/<your_subset>.parquet"}
>>> data = load_dataset("Zarakun/speakers_ua_test", data_files=data_files)
>>> data
DatasetDict({
    test: Dataset({
        features: ['num_speakers', 'utter', 'audio'],
        num_rows: <some_number>
    })
})
```

### Dataset structure
Every example has the following:  
**num_speakers** - the number of speakers    
**utter** - list of utterences data  
**audio** - the waveform of the audio  

Each entry in the **utter** is a dict and has the following structure:  
**start** - the starting position in **audio** of the speaker audio  
**end** - the ending position in **audio** of the speaker audio  
**file_id** - the identificator of the speaker  
**sentence** - the transcription  
**rate** - has to be the same across all examples in the dataset, if not something bad happened