Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
added import for italian M-AILABS dataset (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
mone27 authored and Mte90 committed Oct 10, 2019
1 parent 2332e03 commit 76e1546
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions DeepSpeech/import_m-ailabs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -xe

pushd $HOME/ds/
if [ "${ENGLISH_COMPATIBLE}" = "1" ]; then
IMPORT_AS_ENGLISH="--normalize"
fi;

if [ ! -f "/mnt/extracted/data/M-AILABS/it_IT/it_IT_train.csv" ]; then
# added --skiplist nothing to avoid issues with the importer TODO: find a proper solution
python bin/import_m-ailabs.py ${IMPORT_AS_ENGLISH} \
--skiplist nothing\
--language it_IT \
/mnt/extracted/data/M-AILABS/
fi;
popd
2 changes: 2 additions & 0 deletions DeepSpeech/run_it.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ set -xe

$HOME/import_cvit.sh

$HOME/import_m-ailabs.sh

$HOME/generate_alphabet.sh

$HOME/build_lm.sh
Expand Down

0 comments on commit 76e1546

Please sign in to comment.