Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gst-kaldi-nnet2-online
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
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
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
homeostasis
gst-kaldi-nnet2-online
Commits
864b6b3a
Commit
864b6b3a
authored
10 years ago
by
tanel
Browse files
Options
Downloads
Patches
Plain Diff
Implemented optional rescoring with (large) a 'constant ARPA' LM
parent
3be2d7ac
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+11
-5
11 additions, 5 deletions
README.md
with
11 additions
and
5 deletions
README.md
+
11
−
5
View file @
864b6b3a
...
@@ -4,12 +4,18 @@
...
@@ -4,12 +4,18 @@
GStreamer plugin that wraps Kaldi's SingleUtteranceNnet2Decoder. It requires iVector-adapted
GStreamer plugin that wraps Kaldi's SingleUtteranceNnet2Decoder. It requires iVector-adapted
DNN acoustic models. The iVectors are adapted to the current audio stream automatically.
DNN acoustic models. The iVectors are adapted to the current audio stream automatically.
~~The iVectors are reset after the decoding session (stream) ends.
Currently, it's not possible to save the adaptation state and recall it later
for a particular speaker, to make the adaptation persistent over multiple decoding
sessions.~~
Update: the plugin saves the adaptation state between silence-segmented utterances and between
# CHANGELOG
2015-01-09: Added language model rescoring functionality. In order to use it,
you have to specify two properties:
`lm-fst`
and
`big-lm-const-arpa`
. The
`lm-fst`
property gives the location of the
*original*
LM (the one that was used fpr
compiling the HCLG.fst used during decodong). The
`big-lm-const-arpa`
property
gives the location of the big LM used that is used to rescore the final lattices.
The big LM must be in the 'ConstArpaLm' format, use the Kaldi's
`utils/build_const_arpa_lm.sh`
script to produce it from the ARPA format.
2014-11-11: the plugin saves the adaptation state between silence-segmented utterances and between
multiple decoding sessions of the same plugin instance.
multiple decoding sessions of the same plugin instance.
That is, if you start decoding a new stream, the adaptation state of the
That is, if you start decoding a new stream, the adaptation state of the
previous stream is used (unless it's the first stream, in which case a global mean is used).
previous stream is used (unless it's the first stream, in which case a global mean is used).
...
...
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