Skip to content

Commit e3ccf98

Browse files
solve conflicts
2 parents 3536baf + 72c6f14 commit e3ccf98

File tree

3 files changed

+18
-17
lines changed

3 files changed

+18
-17
lines changed

egs/voxceleb/v1.1/datapath.sh

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@
55

66

77
if [ "$(hostname --domain)" == "clsp.jhu.edu" ];then
8-
voxceleb1_root=/export/corpora5/VoxCeleb1_v1
9-
voxceleb1_root=/export/corpora5/VoxCeleb1_v2
10-
voxceleb2_root=/export/corpora5/VoxCeleb2
11-
musan_root=/export/corpora5/JHU/musan
8+
# voxceleb1_root=/export/corpora5/VoxCeleb1_v1 #voxceleb1 v1
9+
voxceleb1_root=/export/corpora5/VoxCeleb1_v2 #voxceleb1 v2
10+
voxceleb2_root=/export/corpora5/VoxCeleb2
11+
musan_root=/export/corpora5/JHU/musan
1212
elif [ "$(hostname --domain)" == "cm.gemini" ];then
13-
voxceleb1_root=/expscratch/dsnyder/VoxCeleb1
14-
voxceleb2_root=/expscratch/dgromero/corpora-open/vox2
15-
musan_root=/expscratch/dgromero/corpora-open/musan
13+
# voxceleb1_root=/expscratch/dsnyder/VoxCeleb1 #voxceleb1 v1
14+
voxceleb1_root=/exp/jvillalba/corpora/voxceleb1 #voxceleb1 v2
15+
voxceleb2_root=/expscratch/dgromero/corpora-open/vox2
16+
musan_root=/expscratch/dgromero/corpora-open/musan
1617
else
17-
echo "Put your database paths here"
18-
exit 1
18+
echo "Put your database paths here"
19+
exit 1
1920
fi
2021

2122

egs/voxceleb/v1/local/make_voxceleb1_v2_oeh.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
my $meta_path = "$data_base/vox1_meta.csv";
3535
if (! -e "$meta_path") {
3636
$meta_path = "$out_dir/vox1_meta.csv";
37-
system("wget -O $meta_path $meta_url");
37+
system("wget --no-check-certificate -O $meta_path $meta_url");
3838
}
3939

4040
open(META_IN, "<", "$meta_path") or die "Could not open the meta data file $meta_path";

egs/voxceleb/v1/run_001_prepare_data.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ config_file=default_config.sh
1515

1616

1717
if [ $stage -le 1 ];then
18-
19-
# Prepare the VoxCeleb2 dataset for training.
20-
local/make_voxceleb2cat.pl $voxceleb2_root dev 16 data/voxceleb2cat_train
21-
#local/make_voxceleb2cat.pl $voxceleb2_root test 16 data/voxceleb2cat_test
22-
#utils/combine_data.sh data/voxceleb2cat data/voxceleb2cat_train data/voxceleb2cat_test
18+
# Prepare the VoxCeleb2 dataset for training.
19+
local/make_voxceleb2cat.pl $voxceleb2_root dev 16 data/voxceleb2cat_train
2320
fi
2421

2522
if [ $stage -le 2 ];then
26-
# prepare voxceleb1 for test
27-
local/make_voxceleb1_oeh.pl $voxceleb1_root data
23+
# prepare voxceleb1 for test
24+
# This script is for the old version of the dataset
25+
# local/make_voxceleb1_oeh.pl $voxceleb1_root data
26+
# Use this for the newer version of voxceleb1:
27+
local/make_voxceleb1_v2_oeh.pl $voxceleb1_root data
2828
fi

0 commit comments

Comments
 (0)