Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
kaldi-commonvoice
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Simon Will
kaldi-commonvoice
Commits
63c54e2d
Commit
63c54e2d
authored
5 years ago
by
Hossein Hadian
Committed by
Daniel Povey
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[scripts] Add max_active to align_fmllr_lats.sh to prevent rare crashes (#3387)
parent
b0a6e766
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
egs/wsj/s5/steps/align_fmllr_lats.sh
+2
-1
2 additions, 1 deletion
egs/wsj/s5/steps/align_fmllr_lats.sh
with
2 additions
and
1 deletion
egs/wsj/s5/steps/align_fmllr_lats.sh
+
2
−
1
View file @
63c54e2d
...
...
@@ -24,6 +24,7 @@ final_beam=20 # For the lattice-generation phase there is no retry-beam. This
boost_silence
=
1.0
# factor by which to boost silence during alignment.
fmllr_update_type
=
full
generate_ali_from_lats
=
false
# If true, alingments generated from lattices.
max_active
=
7000
# End configuration options.
echo
"
$0
$@
"
# Print the command line for logging
...
...
@@ -149,7 +150,7 @@ if [ $stage -le 3 ]; then
# will be small anyway).
echo
"
$0
: generating lattices containing alternate pronunciations."
$cmd
JOB
=
1:
$nj
$dir
/log/generate_lattices.JOB.log
\
gmm-latgen-faster
--acoustic-scale
=
$acoustic_scale
--beam
=
$final_beam
\
gmm-latgen-faster
--max-active
=
$max_active
--acoustic-scale
=
$acoustic_scale
--beam
=
$final_beam
\
--lattice-beam
=
$final_beam
--allow-partial
=
false
--word-determinize
=
false
\
"
$mdl_cmd
"
"ark:gunzip -c
$dir
/fsts.JOB.gz|"
"
$feats
"
\
"ark:|gzip -c >
$dir
/lat.JOB.gz"
||
exit
1
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment