File size: 2,660 Bytes
3e14b8e 262640f 3e14b8e 262640f 3e14b8e 262640f 3e14b8e 262640f 0ebe3aa |
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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
---
configs:
- config_name: default
data_files:
- split: train
path:
- data/recitation_0/train/*.parquet
- data/recitation_1/train/*.parquet
- data/recitation_2/train/*.parquet
- data/recitation_3/train/*.parquet
- data/recitation_5/train/*.parquet
- data/recitation_6/train/*.parquet
- data/recitation_7/train/*.parquet
- split: validation
path:
- data/recitation_0/validation/*.parquet
- data/recitation_1/validation/*.parquet
- data/recitation_2/validation/*.parquet
- data/recitation_3/validation/*.parquet
- data/recitation_5/validation/*.parquet
- data/recitation_6/validation/*.parquet
- data/recitation_7/validation/*.parquet
- split: test
path:
- data/recitation_8/train/*.parquet
- data/recitation_8/validation/*.parquet
dataset_info:
splits:
- name: train
num_examples: 54823
- name: test
num_examples: 8787
- name: validation
num_examples: 7175
featrues:
- dtype: string
name: aya_name
- dtype: string
name: aya_id
- dtype: string
name: reciter_name
- dtype: int32
name: recitation_id
- dtype: string
name: url
- dtype:
audio:
decode: false
sampling_rate: 16000
name: audio
- dtype: float32
name: duration
- dtype: float32
name: speed
- dtype:
array2_d:
dtype: float32
shape:
- null
- 2
name: speech_intervals
- dtype: bool
name: is_interval_complete
- dtype: bool
name: is_augmented
- dtype:
array2_d:
dtype: float32
shape:
- null
- 2
name: input_features
- dtype:
array2_d:
dtype: int32
shape:
- null
- 1
name: attention_mask
- dtype:
array2_d:
dtype: int32
shape:
- null
- 1
name: labels
---
# Recitation Segmentations Dataset
This an modfied version of [this dataset](https://huggingface.co/datasets/obadx/recitation-segmentation) with these modifications:
* adding augmentation to the speed of the recitations utterance with column `speed` reflects the speed from 0.8 to 1.5 on 40% of the dataset using [audumentations](https://iver56.github.io/audiomentations/).
* adding data augmentation with [audiomentations](https://iver56.github.io/audiomentations/) on 40% of the dataset to prepare it for training the recitations spliter.
The codes for building this dataset is available at [github](https://github.com/obadx/recitations-segmenter)
|