File size: 771 Bytes
75c6e9a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/bash

echo "The dataset link is at http://www.udialogue.org/download/VCTK-Corpus.tar.gz"

# The downloaded VCTK dataset looks like:
# ./datasets/vctk
# └── wav48
#     ├── train (100 speakers)
#     │   ├── p225 (231 files)
#     │   │   ├── p225_001_mic1.flac.wav
#     │   │   └── ...
#     │   ├── p226 (356 files)
#     │   │   ├── p226_001_mic1.flac.wav
#     │   │   └── ...
#     │   └── ...
#     └── test (8 speakers)
#         ├── p360 (424 files)
#         │   ├── p360_001_mic1.flac.wav
#         │   └── ...
#         ├── p226 (424 files)
#         │   ├── p361_001_mic1.flac.wav
#         │   └── ...
#         └── ...