shangeth commited on
Commit
554bad1
·
verified ·
1 Parent(s): e138d9f

Upload original metadata: original_metadata/splits/README

Browse files
Files changed (1) hide show
  1. original_metadata/splits/README +24 -0
original_metadata/splits/README ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ EXPRESSO SPLITS
2
+ ===============
3
+ This is the train/dev/test split of the Expresso dataset used in the paper "EXPRESSO: A Benchmark and Analysis of Discrete Expressive Speech Resynthesis".
4
+
5
+ We split the dataset such that each sub-style (speaker/style/corpus) has 1 minute in dev/test (if a sub-style has a total duration of less than 10 minutes, we'll take 10% of that total duration as target duration for dev/test).
6
+
7
+ This split doesn't contain 'singing' style as there are only a few of them.
8
+
9
+ SPLITTING RULES
10
+ ===============
11
+ We split the dataset with the following rules:
12
+ - For short speech (base read speech), we simply divide all files into 3 parts without segmenting them
13
+ 1. Take the last n files for 'test' until they reach the target duration
14
+ 2. Take the last m remaining files for 'dev' until they reach the target duration
15
+ 3. Take the remaining files as 'train'
16
+ For example, if a style contains ids 1->100, we'll take 92-100 for 'test' (given 92-100 ~ 60s), 81-91 for 'dev', and 1-80 for 'train'
17
+
18
+ - For long speech (conversation speech, read/default/longform, read/narration/longform), we segment long files to have dev/test files with target duration
19
+ 1. Sort the files by duration
20
+ 2.1 If there are two files in the style longer than the target duration
21
+ - Extract 'test' file from the longest file (first 60s to 'test', and 60s- to 'train')
22
+ - Extract 'dev' file from the second-longest file (first 60s to 'dev', and 60s- to 'train')
23
+ 2.2 If there is only one file longer than the target duration
24
+ - Extract 'dev'&'test' files from the longest file (first 60s to 'dev', 60s-120s to 'test', 120s- to 'train')