Korakoe commited on
Commit
36f5ff8
1 Parent(s): cf073cf

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -0
README.md CHANGED
@@ -16,4 +16,67 @@ configs:
16
  data_files:
17
  - split: train
18
  path: data/train-*
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  data_files:
17
  - split: train
18
  path: data/train-*
19
+ task_categories:
20
+ - text2text-generation
21
+ - text-to-audio
22
+ - translation
23
+ language:
24
+ - en
25
+ tags:
26
+ - Phonemes
27
+ - Text2Text
28
+ - Text2Phonemes
29
+ pretty_name: BabblePhon
30
+ size_categories:
31
+ - 10K<n<100K
32
  ---
33
+
34
+ # BabblePhon
35
+
36
+ ## Introduction
37
+
38
+ Welcome to the BabblePhon dataset! This dataset consists of 12,406 text-phoneme pairs. The primary objective of this dataset is to serve as a resource for training a Text2Text to translate text into a context-aware phoneme transcriptions.
39
+
40
+ ## Description
41
+
42
+ The dataset contains synthetic text-phoneme pairs generated for the purpose of training machine learning models. Each entry in the dataset consists of a piece of text paired with its corresponding phoneme transcription.
43
+
44
+ We employed the use of this prompt when generating synthetic data:
45
+
46
+ ```
47
+ Your purpose is to transcribe text provided into IPA, you will respond with only
48
+ the IPA transcription and nothing else, add quotes if present, keep punctuation.
49
+
50
+ for example, you should return it like this (not following this format will break scripts, so follow this):
51
+ Original: yeah, thats if i graduate
52
+ IPA: jə, ðæts ɪf aɪ ˈɡræʤuˌeɪt
53
+
54
+ transcribe: {to_transcribe}
55
+ ```
56
+
57
+ ## Data Quality
58
+
59
+ It's important to note that this dataset has not undergone manual cleaning. As a result, it may contain errors and inaccuracies. Users should exercise caution when utilizing the dataset for training or evaluation purposes.
60
+
61
+ ## Usage
62
+
63
+ Researchers and developers can leverage this dataset for various natural language processing tasks, particularly those involving phoneme transcriptions. However, it's recommended to perform additional preprocessing and validation to address potential data inconsistencies.
64
+
65
+
66
+ ## Acknowledgments
67
+ ```
68
+ @article{panayotov2018libritts,
69
+ title={LibriTTS: A Corpus Derived from LibriSpeech for Text-to-Speech},
70
+ author={Panayotov, Vassil and Chen, Guoguo and Povey, Daniel and Khudanpur, Sanjeev},
71
+ journal={arXiv preprint arXiv:1904.02882},
72
+ year={2018}
73
+ }
74
+
75
+ @article{yamagishi2019full,
76
+ title={A full-bandwidth open-source vocoder for high-quality speech synthesis},
77
+ author={Yamagishi, Junichi and Veaux, Christophe and MacDonald, Kirsten and King, Simon},
78
+ year={2019},
79
+ publisher={The Centre for Speech Technology Research (CSTR)},
80
+ }
81
+ ```
82
+