herwoww commited on
Commit
ff50ec5
1 Parent(s): 5a1a4be

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md CHANGED
@@ -21,4 +21,61 @@ dataset_info:
21
  num_examples: 205
22
  download_size: 3201049372
23
  dataset_size: 13172835766
 
 
 
 
 
 
 
 
 
 
24
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  num_examples: 205
22
  download_size: 3201049372
23
  dataset_size: 13172835766
24
+ task_categories:
25
+ - text-to-speech
26
+ - text-to-audio
27
+ - auto-diacritization
28
+ language:
29
+ - ar
30
+ pretty_name: ClArTTS
31
+ size_categories:
32
+ - 1K<n<10K
33
+ multiliguality: monolingual
34
  ---
35
+
36
+ # Dataset Card for ClArTTS
37
+
38
+ ## Dataset Description
39
+ - **Homepage:** [ClArTTS](http://www.clartts.com/)
40
+ - **Paper:** [ClARTTS: An Open-Source Classical Arabic Text-to-Speech Corpus](https://www.isca-archive.org/interspeech_2023/kulkarni23_interspeech.pdf)
41
+
42
+ ### Dataset Summary
43
+ We present a speech corpus for Classical Arabic Text-to-Speech (ClArTTS) to support the development of end-to-end TTS systems for Arabic. The speech is extracted from a LibriVox audiobook, whichis then processed, segmented, and manually transcribed and annotated. The final ClArTTS corpus contains about 12 hours of speech from a single male speaker sampled at 40100 kHz.
44
+
45
+ ## Dataset Structure
46
+ ### Data Instances
47
+
48
+ A typical data point comprises the name of the audio file, called 'file', its transcription, called `text`, the audio as an array, called 'audio'. Some additional information; sampling rate and audio duration.
49
+
50
+ ```
51
+ DatasetDict({
52
+ train: Dataset({
53
+ features: ['text', 'file', 'audio', 'sampling_rate', 'duration'],
54
+ num_rows: 9500
55
+ })
56
+ test: Dataset({
57
+ features: ['text', 'file', 'audio', 'sampling_rate', 'duration'],
58
+ num_rows: 205
59
+ })
60
+ })
61
+ ```
62
+
63
+ ### Data Splits
64
+ Data is divided into two sets;
65
+
66
+ train: with 9500 audio samples.
67
+ test: with 205 audio samples.
68
+
69
+
70
+ ### Citation Information
71
+ ```
72
+ @inproceedings{kulkarni2023clartts,
73
+ author={Ajinkya Kulkarni and Atharva Kulkarni and Sara Abedalmon'em Mohammad Shatnawi and Hanan Aldarmaki},
74
+ title={ClArTTS: An Open-Source Classical Arabic Text-to-Speech Corpus},
75
+ year={2023},
76
+ booktitle={2023 INTERSPEECH },
77
+ pages={5511--5515},
78
+ doi={10.21437/Interspeech.2023-2224}
79
+ }
80
+
81
+ ```