-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
madcat Arabic (optional extra corpus text for LM), IAM (making word-based and BPE based setup similar), madcat Chinese (clean scripts, tuning) #2964
Merged
Merged
Changes from 19 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
246b982
adding extra corpus for LM, minor cleaning
aarora8 ff212a0
making BPE and word-based setups similar
aarora8 3c3185b
adding changes in run.sh
aarora8 0862c61
updating result in 1b
aarora8 214bd12
updating results
aarora8 f0b87b3
adding tuning directory
aarora8 ff07376
making it similar to madcat chinese
aarora8 b86beb2
updating parameters
aarora8 360710c
updating run.sh
aarora8 051f3fe
updating run.sh
aarora8 0d492b1
adding aachen splits
aarora8 3775cfe
minor change
aarora8 6f77b74
adding val decoding
aarora8 51b2043
minor change
aarora8 38b85c6
minor change
aarora8 f9b92ec
Merge pull request #24 from aarora8/pr.iam
aarora8 a04aa19
adding result
aarora8 46fca14
Merge pull request #25 from aarora8/pr.zh
aarora8 0589950
updating results
aarora8 3be4e41
bug fixes, updating results
aarora8 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
# Copyright 2018 Hossein Hadian | ||
# 2018 Ashish Arora | ||
|
||
# Apache 2.0 | ||
# This script performs data augmentation. | ||
|
||
nj=4 | ||
cmd=run.pl | ||
feat_dim=40 | ||
echo "$0 $@" | ||
|
||
. ./cmd.sh | ||
. ./path.sh | ||
. ./utils/parse_options.sh || exit 1; | ||
|
||
srcdir=$1 | ||
outdir=$2 | ||
datadir=$3 | ||
aug_set=aug1 | ||
mkdir -p $datadir/augmentations | ||
echo "copying $srcdir to $datadir/augmentations/$aug_set, allowed length, creating feats.scp" | ||
|
||
for set in $aug_set; do | ||
image/copy_data_dir.sh --spk-prefix $set- --utt-prefix $set- \ | ||
$srcdir $datadir/augmentations/$set | ||
cat $srcdir/allowed_lengths.txt > $datadir/augmentations/$set/allowed_lengths.txt | ||
local/extract_features.sh --nj $nj --cmd "$cmd" --feat-dim $feat_dim \ | ||
--fliplr false --augment true $datadir/augmentations/$set | ||
done | ||
|
||
echo " combine original data and data from different augmentations" | ||
utils/combine_data.sh --extra-files images.scp $outdir $srcdir $datadir/augmentations/$aug_set | ||
cat $srcdir/allowed_lengths.txt > $outdir/allowed_lengths.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tuning/run_cnn_1a.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tuning/run_cnn_chainali_1d.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tuning/run_cnn_e2eali_1c.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
tuning/run_e2e_cnn_1a.sh |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there a reason there are no results shown herE?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I started the training scripts, I will surely update the result today.