hehaorui commited on
Commit
47401b1
·
1 Parent(s): 320a442

add readme

Browse files
Files changed (2) hide show
  1. README.md +85 -1
  2. push_script.sh +5 -0
README.md CHANGED
@@ -1,3 +1,87 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - zh
4
+ license: cc-by-nc-4.0
5
+ size_categories:
6
+ - 10B<n<100B
7
+ task_categories:
8
+ - text-to-speech
9
+ pretty_name: Debatts-Data
10
+ tags:
11
+ - AI
12
+ - Debating
13
+ - Expressive
14
+ dataset_info:
15
+ features:
16
+ - name: Rebuttal Subject
17
+ dtype: string
18
+ - name: Audio Name
19
+ dtype: string
20
+ - name: audio
21
+ dtype: audio
22
+ - name: text
23
+ dtype: string
24
+ - name: json
25
+ struct:
26
+ - name: duration
27
+ dtype: float64
28
+ - name: key
29
+ dtype: string
30
+ - name: language
31
+ dtype: string
32
+ - name: prompt0_wav_path
33
+ dtype: string
34
+ - name: style_feature
35
+ dtype: string
36
+ - name: text
37
+ dtype: string
38
+ - name: wav_path
39
+ dtype: string
40
+ splits:
41
+ - name: train
42
+ num_bytes: 9878829.0
43
+ num_examples: 8
44
+ download_size: 8784465
45
+ dataset_size: 9878829.0
46
+ configs:
47
+ - config_name: default
48
+ data_files:
49
+ - split: train
50
+ path: data/train-*
51
  ---
52
+ # Debatts-Data: The First Madarin Rebuttal Speech Dataset for Expressive Text-to-Speech Synthesis
53
+
54
+ The Debatts-Data dataset is the first Madarin rebuttal speech dataset for expressive text-to-speech synthesis. It is constructed from a vast collection of professional Madarin speech data sourced from diverse video platforms and podcasts on the Internet. The in-the-wild collection approach ensures the real and natural rebuttal speech. In addition, the dataset contains annotations of transcription, duration and style embed.
55
+ The table and chart below provide the statistic information for the dataset. For some dataset samples and more information regarding Debatts system, please visit the [Debatts project page](https://amphionspace.github.io/debatts/).
56
+
57
+ ## Dataset Specifications
58
+
59
+ | Attribute | Value |
60
+ |----------------------|---------------|
61
+ | Language | ZH |
62
+ | Number of Speakers | 2,350 (est.) |
63
+ | Duration (hrs) | 111 |
64
+ | Type | Text + Speech |
65
+ | Sample Rate (kHz) | 16 |
66
+ | Recorded Method | Wild |
67
+
68
+
69
+ The JSON files in the dataset contain the following keys:
70
+
71
+ | Key | Description |
72
+ |-------------------|----------------------------------------------------------|
73
+ | `key` | Unique identifier for each sample in the dataset |
74
+ | `text` | Text transcription of the audio |
75
+ | `duration` | Duration of the audio clip in seconds |
76
+ | `language` | Language of the audio content |
77
+ | `wav_path` | Path to the corresponding WAV file |
78
+ | `prompt0_wav_path`| Path to the WAV file used as a prompt |
79
+ | `style_feature` | Style features associated with the audio sample |
80
+ ## README 🔥🔥🔥
81
+
82
+ ## Dataset Usage
83
+
84
+ To utilize the Debatts-Data dataset, you can download the raw audio files from the files and versions. The Debatts-Data.tar.gz contains the training data, while the Debatts-Data_test.tar.gz contains the testing data with extra speaker prompt speech.
85
+
86
+
87
+ *Please note that Debatts-Data does not own the copyright to the audio files; the copyright remains with the original owners of the videos or audio. Users are permitted to use this dataset only for non-commercial purposes under the CC BY-NC-4.0 license.*
push_script.sh ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ until git push; do
3
+ echo "Push failed, retrying in 10 seconds..."
4
+ sleep 10
5
+ done