-
Is it possible to add a small fraction of context to the model, e.g an example of an expected sentence or keywords like in CMU Sphinx or GCP Speech-to-text? If yes, any references? I saw the training section on Wiki, but didn't get any hints of context |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
Hi, We have some domain adaptation and dictionary adaptation techniques, but generally they are for the EE version and are implemented as a part of post-processing so we do not make them public until the EE version is not public. As for how to make something similar a part of the acoustic model only - I am not sure if there is an easy way to do so. |
Beta Was this translation helpful? Give feedback.
-
Hi, could you please clarify how knowing some dictionary terms in advance is related to the transformer attention / masking? I am not sure if I understand this idea entirely. As for adding some wrappers to such repos, while I would not object if someone does it, but we have provided ample examples here and such wrappers for external APIs usually provide little real business value and usually just serve as karma building tools not bringing anything new to the table. I have experimented with different model hubs recently ( https://t.me/snakers4/2569) and came to a similar conclusion recently. |
Beta Was this translation helpful? Give feedback.
-
The public models here are mostly acoustic models, even though empirically they may seem to contain LMs As for abusing matrices to turn off future tokens, we do not like in-model streaming due to its complexity We are planning this year to create fully e2e compact high quality LMs |
Beta Was this translation helpful? Give feedback.
Hi,
We have some domain adaptation and dictionary adaptation techniques, but generally they are for the EE version and are implemented as a part of post-processing so we do not make them public until the EE version is not public.
As for how to make something similar a part of the acoustic model only - I am not sure if there is an easy way to do so.