Skip to content
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

Semisup smart split #16

Open
wants to merge 39 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
63a64e7
Smart split
vimalmanohar Oct 20, 2018
05c88fc
Simplifying AMI recipe
vimalmanohar Oct 17, 2018
02f3ba2
Merge branch 'ami' of github.com:vimalmanohar/kaldi into semisup-smart
vimalmanohar Oct 24, 2018
8712355
Some bug fixes
vimalmanohar Oct 31, 2018
9f91992
Semisup recipes
vimalmanohar Oct 31, 2018
d4ab117
Minor fixes
vimalmanohar Nov 30, 2018
dc9a001
Semisup T-S learning clean on AMI
vimalmanohar Dec 4, 2018
07937a3
Adding subset scoring
vimalmanohar Feb 26, 2019
fe024d3
Adding multiple outputs in binaries
vimalmanohar Feb 26, 2019
4514db1
Supervision chain
vimalmanohar Feb 26, 2019
b1278ee
Add script support for multiple denominator FST
vimalmanohar Mar 20, 2019
c29479f
Add some script changes in Fisher for semisup multiple den fst
vimalmanohar Mar 20, 2019
6bf8fb4
Add some script changes in Fisher for semisup multiple den fst
vimalmanohar Mar 20, 2019
22f4377
Adding scripts for multiple denominator FST
vimalmanohar Mar 26, 2019
12bd003
Change tedlium scoring
vimalmanohar Apr 2, 2019
c7e6486
Merge branch 'semisup-smart' of github.com:vimalmanohar/kaldi into se…
vimalmanohar Apr 2, 2019
bc8d906
Fix reading multiple output when computing LDA
vimalmanohar Apr 11, 2019
c1b34d2
Merge branch 'semisup-smart' of github.com:vimalmanohar/kaldi into se…
vimalmanohar Apr 11, 2019
abe5d68
semisup-smart: Adding some tedlium recipes
vimalmanohar Apr 13, 2019
6f59cf7
Adding correct sorting for some CTM scripts
vimalmanohar Apr 13, 2019
c3ebeb9
Segment long utterances chaing model
vimalmanohar Apr 13, 2019
79d94f2
Support sliding cmvn and get egs script change
vimalmanohar Apr 13, 2019
2cc4ad2
Merging master
vimalmanohar Apr 13, 2019
c2a1193
Major bug fix
vimalmanohar Apr 17, 2019
79f4db3
Merge branch 'semisup-smart' of github.com:vimalmanohar/kaldi into se…
vimalmanohar Apr 17, 2019
6032a75
Fix to output_scale
vimalmanohar Apr 18, 2019
6eb00f1
Merge branch 'semisup-smart' of github.com:vimalmanohar/kaldi into se…
vimalmanohar Apr 18, 2019
6c4a86b
output_scale in numerator
vimalmanohar Apr 18, 2019
6a47b7a
Merge branch 'semisup-smart' of github.com:vimalmanohar/kaldi into se…
vimalmanohar Apr 18, 2019
1bd2c94
segmnet long utterances new version
vimalmanohar Apr 19, 2019
23d5816
Adding copy_lat_dir
vimalmanohar Apr 22, 2019
b786ec1
Adding Fisher recipes and updating for output_scale
vimalmanohar May 22, 2019
d091ee4
Merge branch 'semisup-smart' of github.com:vimalmanohar/kaldi into se…
vimalmanohar May 22, 2019
d66e0bc
Minor bug fix
vimalmanohar May 27, 2019
b9a24f8
nnet3/chain,steps: Add KL objective
vimalmanohar May 23, 2019
3482b77
Few different changes
vimalmanohar Jan 8, 2020
a8bb91a
Clean up unrequired changes
vimalmanohar Jan 8, 2020
620f376
TS recipes
vimalmanohar Jan 8, 2020
ec7d2b8
rnnlm rescore
vimalmanohar Jan 8, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions egs/ami/s5b/cmd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
# conf/queue.conf in http://kaldi-asr.org/doc/queue.html for more information,
# or search for the string 'default_config' in utils/queue.pl or utils/slurm.pl.

export train_cmd="queue.pl --mem 1G"
export decode_cmd="queue.pl --mem 2G"
export train_cmd="queue.pl --mem 2G"
export decode_cmd="queue.pl --mem 4G --h-rt 40:00:00"
# the use of cuda_cmd is deprecated, used only in 'nnet1',
export cuda_cmd="queue.pl --gpu 1 --mem 20G"

Expand Down
15 changes: 15 additions & 0 deletions egs/ami/s5b/conf/queue.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Default configuration
command qsub -V -v PATH -cwd -S /usr/bin/bash -j y -sync y -v SGE_JAPI_EDTIME=55
default nodes_rack=0
option nodes_rack=* -l h=r$0n*
option nodes_rack=0 # Do not add anything to qsub_opts
option mem=* -l mem_free=$0
option mem=0 # Do not add anything to qsub_opts
option num_threads=* -pe openmpi $0
option num_threads=1 # Do not add anything to qsub_opts
option max_jobs_run=* -tc $0
default gpu=0
option gpu=0 -q all.q
option gpu=* -l gpu=$0 -q gpu.q@@1080,gpu_short.q -l hostname='!r3n01&!r5n07'
default h_rt=00:58:00
option h_rt=* -l h_rt=$0
Loading